configuration.nix/hosts/shared/promtail.nix

86 lines
2.6 KiB
Nix
Raw Normal View History

2024-07-21 19:10:11 +05:30
{ config, ... }: {
services = {
promtail = {
enable = true;
configuration = {
server = {
http_listen_address = "127.0.0.1";
http_listen_port = 9080;
2024-07-27 17:33:39 +05:30
grpc_listen_port = 0;
2024-07-21 19:10:11 +05:30
};
clients = [
{
2024-07-27 17:33:39 +05:30
url = "https://loki.labs.adtya.xyz/loki/api/v1/push";
2024-07-21 19:10:11 +05:30
}
];
positions = { filename = "/tmp/promtail-positions.yaml"; };
scrape_configs = [
{
job_name = "journal";
journal = {
json = false;
max_age = "12h";
path = "/var/log/journal";
labels = { job = "systemd-journal"; };
2024-07-21 19:10:11 +05:30
};
2024-07-21 19:19:02 +05:30
relabel_configs = [
{
source_labels = [ "__journal__systemd_cgroup" ];
target_label = "systemd_cgroup";
}
{
source_labels = [ "__journal__systemd_slice" ];
target_label = "systemd_slice";
}
2024-07-21 19:10:11 +05:30
{
source_labels = [ "__journal__systemd_unit" ];
target_label = "systemd_unit";
}
{
source_labels = [ "__journal__systemd_user_unit" ];
target_label = "systemd_user_unit";
}
{
source_labels = [ "__journal__systemd_user_slice" ];
target_label = "systemd_user_slice";
}
{
source_labels = [ "__journal__systemd_session" ];
target_label = "systemd_session";
}
{
source_labels = [ "__journal__systemd_owner_uid" ];
target_label = "systemd_owner_uid";
}
{
source_labels = [ "__journal__hostname" ];
target_label = "node_name";
}
{
source_labels = [ "__journal_syslog_identifier" ];
target_label = "syslog_identifier";
}
{
source_labels = [ "__journal__transport" ];
target_label = "transport";
}
{
source_labels = [ "__journal__pid" ];
target_label = "pid";
}
{
source_labels = [ "__journal__uid" ];
target_label = "uid";
}
{
source_labels = [ "__journal__gid" ];
target_label = "gid";
2024-07-21 19:10:11 +05:30
}
];
}
];
};
};
};
}