2017-01-09 15:02:02 +00:00
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
|
|
|
with import <stockholm/lib>;
|
|
|
|
let
|
2018-09-16 23:11:57 +00:00
|
|
|
irc-server = "irc.r";
|
2017-09-29 19:34:38 +00:00
|
|
|
irc-nick = "m-alarm";
|
2017-01-09 15:03:36 +00:00
|
|
|
collectd-port = 25826;
|
|
|
|
influx-port = 8086;
|
2018-09-16 23:11:57 +00:00
|
|
|
grafana-port = 3000;
|
2017-03-01 14:46:23 +00:00
|
|
|
db = "collectd_db";
|
|
|
|
logging-interface = config.makefu.server.primary-itf;
|
2017-01-09 15:02:02 +00:00
|
|
|
in {
|
2017-01-09 15:03:36 +00:00
|
|
|
services.grafana.enable = true;
|
2017-01-09 15:02:02 +00:00
|
|
|
services.grafana.addr = "0.0.0.0";
|
|
|
|
|
|
|
|
services.influxdb.enable = true;
|
2021-10-01 16:53:03 +00:00
|
|
|
systemd.services.influxdb.serviceConfig.LimitNOFILE = 8192;
|
|
|
|
|
2017-05-24 08:49:34 +00:00
|
|
|
# redirect grafana to stats.makefu.r
|
|
|
|
services.nginx.enable = true;
|
|
|
|
services.nginx.virtualHosts."stats.makefu.r".locations."/".proxyPass = "http://localhost:3000";
|
2017-01-09 15:02:02 +00:00
|
|
|
# forward these via nginx
|
|
|
|
services.influxdb.extraConfig = {
|
|
|
|
meta.hostname = config.krebs.build.host.name;
|
|
|
|
# meta.logging-enabled = true;
|
2018-12-13 00:52:24 +00:00
|
|
|
logging.level = "info";
|
|
|
|
http.log-enabled = true;
|
2022-11-01 10:39:56 +00:00
|
|
|
http.flux-enabled = true;
|
2018-12-13 00:52:24 +00:00
|
|
|
http.write-tracing = false;
|
|
|
|
http.suppress-write-log = true;
|
|
|
|
data.trace-logging-enabled = false;
|
|
|
|
data.query-log-enabled = false;
|
2021-03-12 19:29:35 +00:00
|
|
|
reporting-disabled = true;
|
2018-12-13 00:52:24 +00:00
|
|
|
|
2017-01-09 15:02:02 +00:00
|
|
|
http.bind-address = ":${toString influx-port}";
|
|
|
|
admin.bind-address = ":8083";
|
|
|
|
monitoring = {
|
|
|
|
enabled = false;
|
|
|
|
# write-interval = "24h";
|
|
|
|
};
|
2017-01-09 15:03:36 +00:00
|
|
|
collectd = [{
|
2017-01-09 15:02:02 +00:00
|
|
|
enabled = true;
|
|
|
|
typesdb = "${pkgs.collectd}/share/collectd/types.db";
|
2017-03-01 14:46:23 +00:00
|
|
|
database = db;
|
2017-08-06 14:42:52 +00:00
|
|
|
bind-address = ":${toString collectd-port}";
|
2017-01-09 15:02:02 +00:00
|
|
|
}];
|
|
|
|
};
|
2017-02-03 19:45:27 +00:00
|
|
|
|
2017-01-09 15:02:02 +00:00
|
|
|
networking.firewall.extraCommands = ''
|
|
|
|
iptables -A INPUT -i retiolum -p udp --dport ${toString collectd-port} -j ACCEPT
|
|
|
|
iptables -A INPUT -i retiolum -p tcp --dport ${toString influx-port} -j ACCEPT
|
|
|
|
iptables -A INPUT -i retiolum -p tcp --dport ${toString grafana-port} -j ACCEPT
|
2018-09-16 23:11:57 +00:00
|
|
|
#iptables -A INPUT -i ${logging-interface} -p udp --dport ${toString collectd-port} -j ACCEPT
|
|
|
|
#iptables -A INPUT -i ${logging-interface} -p tcp --dport ${toString influx-port} -j ACCEPT
|
|
|
|
#iptables -A INPUT -i ${logging-interface} -p tcp --dport ${toString grafana-port} -j ACCEPT
|
2017-04-19 08:05:39 +00:00
|
|
|
|
|
|
|
ip6tables -A INPUT -i retiolum -p udp --dport ${toString collectd-port} -j ACCEPT
|
|
|
|
ip6tables -A INPUT -i retiolum -p tcp --dport ${toString influx-port} -j ACCEPT
|
|
|
|
ip6tables -A INPUT -i retiolum -p tcp --dport ${toString grafana-port} -j ACCEPT
|
2018-09-16 23:11:57 +00:00
|
|
|
#ip6tables -A INPUT -i ${logging-interface} -p udp --dport ${toString collectd-port} -j ACCEPT
|
|
|
|
#ip6tables -A INPUT -i ${logging-interface} -p tcp --dport ${toString influx-port} -j ACCEPT
|
|
|
|
#ip6tables -A INPUT -i ${logging-interface} -p tcp --dport ${toString grafana-port} -j ACCEPT
|
2017-01-09 15:02:02 +00:00
|
|
|
'';
|
2018-09-16 23:11:57 +00:00
|
|
|
state = [ "/var/lib/grafana/data/grafana.db" ];
|
2017-01-09 15:02:02 +00:00
|
|
|
}
|