nixos-config/nixos/machines/pepe/loki-promtail.nix

42 lines
901 B
Nix
Raw Normal View History

2023-02-07 21:56:04 +01:00
{ config, ... }:
2023-02-02 20:13:10 +01:00
{
services.promtail = {
enable = true;
2023-02-07 21:56:04 +01:00
configuration = {
server = {
http_listen_port = 28183;
grpc_listen_port = 0;
};
positions.filename = "/tmp/positions.yaml";
clients = [
{ url = "http://127.0.0.1:3100/loki/api/v1/push"; }
];
scrape_configs = [
{
job_name = "journal";
journal = {
max_age = "12h";
labels = {
job = "systemd-journal";
host = config.networking.hostName;
};
};
2023-02-08 13:08:21 +01:00
relabel_configs = [
{
source_labels = [ "__journal__systemd_unit" ];
target_label = "unit";
}
{
source_labels = [ "__journal__transport" ];
target_label = "transport";
}
];
2023-02-07 21:56:04 +01:00
}
];
};
2023-02-02 20:13:10 +01:00
};
}