From 82c12fecdae39ba250f5f9ee83b8284d75d83b15 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy <dmitriy@pleshevski.ru> Date: Mon, 3 Feb 2025 01:16:42 +0300 Subject: [PATCH] host/tatos: remove postfix exporter --- hosts/tatos/services/prometheus.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/hosts/tatos/services/prometheus.nix b/hosts/tatos/services/prometheus.nix index bfd98cc..73b656f 100644 --- a/hosts/tatos/services/prometheus.nix +++ b/hosts/tatos/services/prometheus.nix @@ -3,7 +3,6 @@ let nodeExporterPort = 40000; nginxExporterPort = 40001; - postfixExporterPort = 40002; basic_auth = { username = "jan"; @@ -72,17 +71,6 @@ in } ]; } - { - job_name = "sm_smtp"; - # inherit basic_auth; - static_configs = [ - { - targets = [ - "sm-sd1:${toString postfixExporterPort}" - ]; - } - ]; - } ]; }; }