2023-12-13 18:18:56 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
flake,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
age.secrets.nachtigall-metrics-prometheus-basic-auth-password = {
|
|
|
|
file = "${flake.self}/secrets/nachtigall-metrics-prometheus-basic-auth-password.age";
|
|
|
|
mode = "600";
|
|
|
|
owner = "promtail";
|
|
|
|
};
|
|
|
|
|
|
|
|
services.promtail = {
|
|
|
|
enable = true;
|
|
|
|
configuration = {
|
|
|
|
server = {
|
|
|
|
http_listen_port = 9080;
|
|
|
|
grpc_listen_port = 0;
|
|
|
|
};
|
|
|
|
positions = {
|
|
|
|
filename = "/tmp/positions.yaml";
|
|
|
|
};
|
|
|
|
clients = [
|
|
|
|
{
|
2024-05-08 17:47:47 +00:00
|
|
|
url = "https://flora-6.${config.pub-solar-os.networking.domain}/loki/api/v1/push";
|
2023-12-13 18:18:56 +00:00
|
|
|
basic_auth = {
|
|
|
|
username = "hakkonaut";
|
|
|
|
password_file = "${config.age.secrets.nachtigall-metrics-prometheus-basic-auth-password.path}";
|
|
|
|
};
|
2024-05-08 20:57:07 +00:00
|
|
|
}
|
|
|
|
];
|
2023-12-13 18:18:56 +00:00
|
|
|
scrape_configs = [
|
2024-05-08 20:57:07 +00:00
|
|
|
{
|
2023-12-13 18:18:56 +00:00
|
|
|
job_name = "journal";
|
|
|
|
journal = {
|
|
|
|
max_age = "24h";
|
|
|
|
labels = {
|
|
|
|
job = "systemd-journal";
|
|
|
|
host = "nachtigall";
|
|
|
|
};
|
2024-05-08 20:57:07 +00:00
|
|
|
};
|
2023-12-13 18:18:56 +00:00
|
|
|
relabel_configs = [
|
|
|
|
{
|
|
|
|
source_labels = [ "__journal__systemd_unit" ];
|
|
|
|
target_label = "unit";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2024-05-08 20:57:07 +00:00
|
|
|
];
|
2023-12-13 18:18:56 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|