diff options
author | Martin Fischer <martin@push-f.com> | 2025-08-30 19:42:04 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-08-30 20:03:18 +0200 |
commit | 6fe52beb6482809b67fcc6681c41b04acd04d7a7 (patch) | |
tree | b62aae09f70ebbadc46a4ce617bac291012dc084 /nixos/hosts/tente | |
parent | 80a98992584487a389900ea9e78963c01ea3d812 (diff) |
feat(ev): add monitoring
Diffstat (limited to 'nixos/hosts/tente')
-rw-r--r-- | nixos/hosts/tente/grafana.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/hosts/tente/grafana.nix b/nixos/hosts/tente/grafana.nix index e6fb7af..02d26c5 100644 --- a/nixos/hosts/tente/grafana.nix +++ b/nixos/hosts/tente/grafana.nix @@ -50,6 +50,17 @@ in access = "proxy"; url = "http://127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}"; } + { + name = "Prometheus Ev"; + type = "prometheus"; + url = "http://ev.tailnet:9090"; + } + { + name = "Loki Ev"; + type = "loki"; + access = "proxy"; + url = "http://ev.tailnet:3030"; + } ]; }; }; |