diff options
author | Emile <git@emile.space> | 2024-09-19 22:08:09 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-09-19 22:08:09 +0200 |
commit | eda94c0415da6462750e0ee3a19858f03d8bd8fe (patch) | |
tree | 29017a7343b3b00c55240ee3b288a9c032917405 /nix/hosts/corrino/ports.nix | |
parent | 7d8bcd0327836408f377484baf29a08c7d053173 (diff) |
grafana prometheus loki promtail foo
Diffstat (limited to 'nix/hosts/corrino/ports.nix')
-rw-r--r-- | nix/hosts/corrino/ports.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/nix/hosts/corrino/ports.nix b/nix/hosts/corrino/ports.nix index 0c2bd2a..13ef9a4 100644 --- a/nix/hosts/corrino/ports.nix +++ b/nix/hosts/corrino/ports.nix @@ -30,11 +30,18 @@ s3 = 9000; web = 9001; }; + promtail = 9033; + loki = 9034; authelia = 9091; - prometheus = 9003; gitDaemon = 9418; - prometheus_node_exporter = 9002; - prometheus_systemd_exporter = 9558; - prometheus_smartctl_exporter = 9633; + prometheus = { + web = 9003; + exporter = { + node = 9002; + nginx = 9913; + systemd = 9558; + smartctl = 9633; + }; + }; }; } |