mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
falkenstein: remove postfix exporter
This commit is contained in:
parent
f0a1129c7d
commit
d9a60f39a6
|
@ -10,9 +10,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
enabledCollectors = [ "systemd" ];
|
enabledCollectors = [ "systemd" ];
|
||||||
};
|
};
|
||||||
postfix = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.geoipupdate = {
|
services.geoipupdate = {
|
||||||
|
@ -115,6 +112,5 @@
|
||||||
};
|
};
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
config.services.prometheus.exporters.node.port
|
config.services.prometheus.exporters.node.port
|
||||||
config.services.prometheus.exporters.postfix.port
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
10
hosts/falkenstein/modules/monitoring/dmarc.nix
Normal file
10
hosts/falkenstein/modules/monitoring/dmarc.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
users.users.dmarc = {
|
||||||
|
description = "DMARC Report recipient";
|
||||||
|
isNormalUser = true;
|
||||||
|
};
|
||||||
|
# services.parsedmarc = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
}
|
|
@ -3,6 +3,9 @@ let
|
||||||
domain = "monitoring.${config.networking.domain}";
|
domain = "monitoring.${config.networking.domain}";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./dmarc.nix
|
||||||
|
];
|
||||||
age.secrets."grafana/oidc_secret" = {
|
age.secrets."grafana/oidc_secret" = {
|
||||||
file = ../../../../secrets/nuc/grafana/oidc.age;
|
file = ../../../../secrets/nuc/grafana/oidc.age;
|
||||||
owner = "grafana";
|
owner = "grafana";
|
||||||
|
@ -104,12 +107,6 @@ in
|
||||||
}];
|
}];
|
||||||
scrape_interval = "15s";
|
scrape_interval = "15s";
|
||||||
}
|
}
|
||||||
{
|
|
||||||
job_name = "postfix";
|
|
||||||
static_configs = [{
|
|
||||||
targets = [ "falkenstein.vpn.rfive.de:${toString config.services.prometheus.exporters.postfix.port}" ];
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
job_name = "synapse";
|
job_name = "synapse";
|
||||||
static_configs = [{
|
static_configs = [{
|
||||||
|
|
|
@ -112,16 +112,4 @@ in
|
||||||
pythonPath = python.pkgs.makePythonPath propagatedBuildInputs;
|
pythonPath = python.pkgs.makePythonPath propagatedBuildInputs;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
# (hopefully) fix systemd journal reading
|
|
||||||
prometheus-postfix-exporter = prev.prometheus-postfix-exporter.overrideAttrs (_old: {
|
|
||||||
patches = [
|
|
||||||
./prometheus-postfix-exporter/0001-cleanup-also-catch-milter-reject.patch
|
|
||||||
];
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "adangel";
|
|
||||||
repo = "postfix_exporter";
|
|
||||||
rev = "414ac12ee63415eede46cb3084d755a6da6fba23";
|
|
||||||
hash = "sha256-m1kVaO3N7XC1vtnxXX9kMiEFPmZuoopRUYgA7gQzP8w=";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
From f4c5dd5628c873981b2d6d6b8f3bbf036b9fd724 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Rouven Seifert <rouven.seifert@ifsr.de>
|
|
||||||
Date: Thu, 2 May 2024 11:20:27 +0200
|
|
||||||
Subject: [PATCH] cleanup: also catch milter-reject
|
|
||||||
|
|
||||||
---
|
|
||||||
postfix_exporter.go | 2 ++
|
|
||||||
1 file changed, 2 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/postfix_exporter.go b/postfix_exporter.go
|
|
||||||
index f20d99c..676d767 100644
|
|
||||||
--- a/postfix_exporter.go
|
|
||||||
+++ b/postfix_exporter.go
|
|
||||||
@@ -335,6 +335,8 @@ func (e *PostfixExporter) CollectFromLogLine(line string) {
|
|
||||||
e.cleanupProcesses.Inc()
|
|
||||||
} else if strings.Contains(remainder, ": reject: ") {
|
|
||||||
e.cleanupRejects.Inc()
|
|
||||||
+ } else if strings.Contains(remainder, ": milter-reject: ") {
|
|
||||||
+ e.cleanupRejects.Inc()
|
|
||||||
} else {
|
|
||||||
e.addToUnsupportedLine(line, subprocess, level)
|
|
||||||
}
|
|
||||||
--
|
|
||||||
2.44.0
|
|
||||||
|
|
Loading…
Reference in a new issue