nixos/modules/services/promtail/default.nix

87 lines
2.4 KiB
Nix
Raw Permalink Normal View History

2023-04-09 23:07:39 +02:00
# # log forwarding
2023-11-07 22:00:00 +01:00
{ config, lib, ... }:
2023-04-09 23:07:39 +02:00
let
cfg = config.my.services.promtail;
2023-11-07 23:13:51 +01:00
inherit (config.networking) domain;
2023-04-09 23:07:39 +02:00
in
{
options.my.services.promtail = with lib; {
enable = mkEnableOption "promtail log forwarding";
port = mkOption {
type = types.port;
default = 9081;
example = 3002;
description = "Internal port";
};
};
config = lib.mkIf cfg.enable {
services.promtail = {
enable = true;
configuration = {
server = {
http_listen_port = cfg.port;
grpc_listen_port = 0; # without it collides with loki; only used for pushing (not used)
};
positions = {
filename = "/tmp/positions.yaml";
};
2024-07-28 21:08:02 +02:00
clients = [
{
url = "http://localhost:${toString config.services.loki.configuration.server.http_listen_port}/loki/api/v1/push";
2024-07-28 21:08:02 +02:00
}
];
2023-04-09 23:07:39 +02:00
scrape_configs = [
{
job_name = "journal";
journal = {
max_age = "24h";
labels = {
job = "systemd-journal";
host = config.networking.hostName;
};
};
2024-07-28 21:08:02 +02:00
relabel_configs = [
{
source_labels = [ "__journal__systemd_unit" ];
target_label = "unit";
}
];
2023-04-09 23:07:39 +02:00
}
];
};
};
2023-04-27 23:23:54 +02:00
my.services.prometheus.rules = {
promtail_request_errors = {
condition = ''100 * sum(rate(promtail_request_duration_seconds_count{status_code=~"5..|failed"}[1m])) by (namespace, job, route, instance) / sum(rate(promtail_request_duration_seconds_count[1m])) by (namespace, job, route, instance) > 10'';
time = "15m";
description = ''{{ $labels.job }} {{ $labels.route }} is experiencing {{ printf "%.2f" $value }}% errors'';
};
promtail_file_lagging = {
condition = ''abs(promtail_file_bytes_total - promtail_read_bytes_total) > 1e6'';
time = "15m";
description = ''{{ $labels.instance }} {{ $labels.job }} {{ $labels.path }} has been lagging by more than 1MB for more than 15m'';
};
};
my.services.webserver.virtualHosts = [
2023-04-09 23:07:39 +02:00
{
subdomain = "log";
inherit (cfg) port;
}
];
webapps.apps.promtail = {
dashboard = {
name = "Logging";
category = "infra";
icon = "book";
2023-11-12 20:39:44 +01:00
url = "https://log.${domain}";
2023-04-09 23:07:39 +02:00
};
};
};
}