prometheus-unifi-poller-exporter: init module
This commit is contained in:
parent
8c49e5a78c
commit
aaf0002f68
|
@ -46,6 +46,7 @@ let
|
||||||
"surfboard"
|
"surfboard"
|
||||||
"tor"
|
"tor"
|
||||||
"unifi"
|
"unifi"
|
||||||
|
"unifi-poller"
|
||||||
"varnish"
|
"varnish"
|
||||||
"wireguard"
|
"wireguard"
|
||||||
] (name:
|
] (name:
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{ config, lib, pkgs, options }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.prometheus.exporters.unifi-poller;
|
||||||
|
|
||||||
|
configFile = pkgs.writeText "prometheus-unifi-poller-exporter.json" (generators.toJSON {} {
|
||||||
|
poller = { inherit (cfg.log) debug quiet; };
|
||||||
|
unifi = { inherit (cfg) controllers; };
|
||||||
|
influxdb.disable = true;
|
||||||
|
prometheus = {
|
||||||
|
http_listen = "${cfg.listenAddress}:${toString cfg.port}";
|
||||||
|
report_errors = cfg.log.prometheusErrors;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
in {
|
||||||
|
port = 9130;
|
||||||
|
|
||||||
|
extraOpts = {
|
||||||
|
inherit (options.services.unifi-poller.unifi) controllers;
|
||||||
|
log = {
|
||||||
|
debug = mkEnableOption "debug logging including line numbers, high resolution timestamps, per-device logs.";
|
||||||
|
quiet = mkEnableOption "startup and error logs only.";
|
||||||
|
prometheusErrors = mkEnableOption "emitting errors to prometheus.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
serviceOpts.serviceConfig = {
|
||||||
|
ExecStart = "${pkgs.unifi-poller}/bin/unifi-poller --config ${configFile}";
|
||||||
|
DynamicUser = false;
|
||||||
|
};
|
||||||
|
}
|
|
@ -593,6 +593,19 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unifi-poller = {
|
||||||
|
nodeName = "unifi_poller";
|
||||||
|
exporterConfig.enable = true;
|
||||||
|
exporterConfig.controllers = [ { } ];
|
||||||
|
exporterTest = ''
|
||||||
|
wait_for_unit("prometheus-unifi-poller-exporter.service")
|
||||||
|
wait_for_open_port(9130)
|
||||||
|
succeed(
|
||||||
|
"curl -sSf localhost:9130/metrics | grep -q 'unifipoller_build_info{.\\+} 1'"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
varnish = {
|
varnish = {
|
||||||
exporterConfig = {
|
exporterConfig = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in New Issue