diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-11 22:08:04 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-11 22:08:04 +0100 |
commit | ae7e10a0fbb74dd58b698dcb52bae0813fc05f89 (patch) | |
tree | ae7a55519dea6f12e23ec6e4ad65b530b48d517f | |
parent | Fix missing brace (diff) | |
download | Rory-Open-Architecture-ae7e10a0fbb74dd58b698dcb52bae0813fc05f89.tar.xz |
Add promtail
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r-- | modules/base-server.nix | 28 |
1 files changed, 28 insertions, 0 deletions
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; |