service/promtail: init

This commit is contained in:
Felix Buehler 2023-04-09 23:07:39 +02:00
parent 3ef00d6963
commit 1760b2f1dc
3 changed files with 91 additions and 0 deletions

View file

@ -23,6 +23,7 @@
./passworts
./photoprism
./prometheus
./promtail
./prowlarr
./radarr
./rss-bridge

View file

@ -0,0 +1,87 @@
# # log forwarding
{ config, lib, pkgs, ... }:
let
cfg = config.my.services.promtail;
domain = config.networking.domain;
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_address = "127.0.0.1";
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";
};
clients = [{
url = "http://127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}/loki/api/v1/push";
}];
scrape_configs = [
{
job_name = "journal";
journal = {
max_age = "24h";
labels = {
job = "systemd-journal";
host = config.networking.hostName;
};
};
relabel_configs = [{
source_labels = [ "__journal__systemd_unit" ];
target_label = "unit";
}];
}
{
job_name = "nginx";
static_configs = [
{
targets = [
"localhost"
];
labels = {
job = "nginx";
__path__ = "/var/log/nginx/*.log";
host = config.networking.hostName;
};
}
];
}
];
};
};
# otherwise access to the log is denied
users.users.promtail.extraGroups = [ "nginx" ];
my.services.nginx.virtualHosts = [
{
subdomain = "log";
inherit (cfg) port;
}
];
webapps.apps.promtail = {
dashboard = {
name = "Logging";
category = "infra";
icon = "book";
link = "https://log.${domain}";
};
};
};
}