34 lines
734 B
Nix
34 lines
734 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
services.promtail = {
|
||
|
enable = true;
|
||
|
configuration = {
|
||
|
server = {
|
||
|
http_listen_port = 9080;
|
||
|
grpc_listen_port = 0;
|
||
|
};
|
||
|
clients = [
|
||
|
{ url = "http://127.0.0.1:3100/loki/api/v1/push"; }
|
||
|
];
|
||
|
scrape_configs = [
|
||
|
{
|
||
|
job_name = "journal";
|
||
|
journal = {
|
||
|
labels = {
|
||
|
job = "systemd-journal";
|
||
|
host = "${config.networking.hostName}"; # Имя хоста как метка
|
||
|
};
|
||
|
};
|
||
|
relabel_configs = [
|
||
|
{
|
||
|
source_labels = [ "__journal__systemd_unit" ];
|
||
|
target_label = "unit";
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|