20 lines
397 B
Nix
20 lines
397 B
Nix
|
{ config, lib, pkgs, options }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.services.prometheus.exporters.redis;
|
||
|
in
|
||
|
{
|
||
|
port = 9121;
|
||
|
serviceOpts = {
|
||
|
serviceConfig = {
|
||
|
ExecStart = ''
|
||
|
${pkgs.prometheus-redis-exporter}/bin/redis_exporter \
|
||
|
-web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
|
||
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|