40 lines
952 B
Nix
40 lines
952 B
Nix
{ config, lib, pkgs }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.prometheus.exporters.dnsmasq;
|
|
in
|
|
{
|
|
port = 9153;
|
|
extraOpts = {
|
|
dnsmasqListenAddress = mkOption {
|
|
type = types.str;
|
|
default = "localhost:53";
|
|
description = ''
|
|
Address on which dnsmasq listens.
|
|
'';
|
|
};
|
|
leasesPath = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/misc/dnsmasq.leases";
|
|
example = "/var/lib/dnsmasq/dnsmasq.leases";
|
|
description = ''
|
|
Path to the <literal>dnsmasq.leases</literal> file.
|
|
'';
|
|
};
|
|
};
|
|
serviceOpts = {
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
ExecStart = ''
|
|
${pkgs.prometheus-dnsmasq-exporter}/bin/dnsmasq_exporter \
|
|
--listen ${cfg.listenAddress}:${toString cfg.port} \
|
|
--dnsmasq ${cfg.dnsmasqListenAddress} \
|
|
--leases_path ${cfg.leasesPath} \
|
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
|
'';
|
|
};
|
|
};
|
|
}
|