common: disable promtail (deprecated). Point auto-upgrade to upgrade branch

This commit is contained in:
2026-05-31 19:04:12 +02:00
parent a07eb1f799
commit ebbc271378
2 changed files with 2 additions and 37 deletions
+1 -36
View File
@@ -17,41 +17,6 @@ in {
'';
};
services.promtail = {
enable = true;
configuration = {
server = {
http_listen_port = 28183;
grpc_listen_port = 0;
};
clients = [
{
url = "http://${metricsHost}:3100/loki/api/v1/push";
}
];
scrape_configs = [
{
job_name = "systemd-journal";
journal = {
max_age = "12h";
labels = {
job = "systemd-journal";
host = config.networking.hostName;
};
};
relabel_configs = [
{
source_labels = [ "__journal__systemd_unit" ];
target_label = "unit";
}
{
source_labels = [ "__journal_priority_keyword" ];
target_label = "level";
}
];
}
];
};
};
# TODO: Configure fluent-bit or rsyslog
}