valkyrie: Configure promtail
This commit is contained in:
parent
a5abfc14fc
commit
34b5e5f21b
2 changed files with 36 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
./blocky
|
||||
./coredns
|
||||
./kea
|
||||
./promtail
|
||||
./unbound
|
||||
];
|
||||
|
||||
|
|
35
machines/valkyrie/promtail/default.nix
Normal file
35
machines/valkyrie/promtail/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
services.promtail = {
|
||||
enable = true;
|
||||
configuration = {
|
||||
clients = [ { url = "http://saga:3100/loki/api/v1/push"; } ];
|
||||
positions = {
|
||||
filename = "/tmp/positions.yaml";
|
||||
};
|
||||
|
||||
scrape_configs = [
|
||||
{
|
||||
job_name = "journal";
|
||||
journal = {
|
||||
labels = {
|
||||
host = "valkyrie";
|
||||
job = "systemd-journal";
|
||||
};
|
||||
max_age = "24h";
|
||||
};
|
||||
relabel_configs = [
|
||||
{
|
||||
source_labels = [ "__journal__systemd_unit" ];
|
||||
target_label = "unit";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
|
||||
server = {
|
||||
grpc_listen_port = 0;
|
||||
http_listen_port = 28183;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue