From ae7e10a0fbb74dd58b698dcb52bae0813fc05f89 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Sat, 11 Feb 2023 22:08:04 +0100 Subject: Add promtail Signed-off-by: TheArcaneBrony --- modules/base-server.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'modules') diff --git a/modules/base-server.nix b/modules/base-server.nix index ac76a77..b57734e 100644 --- a/modules/base-server.nix +++ b/modules/base-server.nix @@ -61,6 +61,34 @@ ]; }; }; + promtail = { + enable = true; + configuration = { + server = { + http_listen_port = 3031; + grpc_listen_port = 0; + }; + 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 = "12h"; + labels = { + job = "systemd-journal"; + host = "${toString config.networking.hostName}"; + }; + }; + relabel_configs = [{ + source_labels = [ "__journal__systemd_unit" ]; + target_label = "unit"; + }]; + }]; + }; }; }; security.sudo.wheelNeedsPassword = false; -- cgit 1.4.1