diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/common/server/prometheus.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/common/server/prometheus.nix b/hosts/common/server/prometheus.nix index 00a7eba..401dd2b 100644 --- a/hosts/common/server/prometheus.nix +++ b/hosts/common/server/prometheus.nix @@ -56,6 +56,12 @@ in { relabel_configs = relabelConfigs; } { + job_name = "gitea"; + static_configs = [{ targets = [ "192.168.6.20:8002" ]; }]; + relabel_configs = relabelConfigs; + } + + { job_name = "dnsd"; static_configs = [{ targets = [ "192.168.6.1:8053" ]; }]; relabel_configs = relabelConfigs; |