diff --git a/hosts/marvin/services/prometheus.nix b/hosts/marvin/services/prometheus.nix index b3e74c9..e2e9f89 100644 --- a/hosts/marvin/services/prometheus.nix +++ b/hosts/marvin/services/prometheus.nix @@ -12,7 +12,17 @@ { job_name = "marvin"; static_configs = [{ - targets = [ "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" ]; + targets = [ + "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" + ]; + }]; + } + { + job_name = "gitea"; + static_configs = [{ + targets = [ + "127.0.0.1:${toString config.services.gitea.httpPort}" + ]; }]; } ];