forked from mirrors/nixpkgs
f4d03b5c9c
- prometheus exporters are now configured with `services.prometheus.exporters.<name>` - the exporters are now defined by attribute sets from which the options for each exporter are generated - most of the exporter definitions are used unchanged, except for some changes that should't have any impact on the functionality.
37 lines
732 B
Nix
37 lines
732 B
Nix
{ config, lib, pkgs }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.prometheus.exporters.json;
|
|
in
|
|
{
|
|
port = 7979;
|
|
extraOpts = {
|
|
url = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
URL to scrape JSON from.
|
|
'';
|
|
};
|
|
configFile = mkOption {
|
|
type = types.path;
|
|
description = ''
|
|
Path to configuration file.
|
|
'';
|
|
};
|
|
listenAddress = {}; # not used
|
|
};
|
|
serviceOpts = {
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
ExecStart = ''
|
|
${pkgs.prometheus-json-exporter}/bin/prometheus-json-exporter \
|
|
--port ${toString cfg.port} \
|
|
${cfg.url} ${cfg.configFile} \
|
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
|
'';
|
|
};
|
|
};
|
|
}
|