From 86592a723309d45dc09ff90872c0ee4aa7e52dc0 Mon Sep 17 00:00:00 2001 From: makefu Date: Mon, 2 Sep 2019 13:56:34 +0200 Subject: shack/influx: enable collectd receiver --- krebs/2configs/shack/influx.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/krebs/2configs/shack/influx.nix b/krebs/2configs/shack/influx.nix index 91b4fa9b..92cb24bf 100644 --- a/krebs/2configs/shack/influx.nix +++ b/krebs/2configs/shack/influx.nix @@ -1,9 +1,12 @@ -# hostname: influx.shack +{pkgs, ... }: # hostname: influx.shack let port = 8086; + collectd-port = 25826; + db = "collectd_db"; in { networking.firewall.allowedTCPPorts = [ port ]; # for legacy applications + networking.firewall.allowedUDPPorts = [ collectd-port ]; services.nginx.virtualHosts."influx.shack" = { locations."/" = { proxyPass = "http://localhost:${toString port}/"; @@ -14,6 +17,17 @@ in extraConfig = { http.bind-address = "0.0.0.0:${toString port}"; http.log-enabled = false; + http.write-tracing = false; + http.suppress-write-log = true; + data.trace-logging-enabled = false; + data.query-log-enabled = false; + monitoring.enabled = false; + collectd = [{ + enabled = true; + typesdb = "${pkgs.collectd}/share/collectd/types.db"; + database = db; + bind-address = ":${toString collectd-port}"; + }]; }; }; } -- cgit v1.2.3