mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-19 16:40:32 +03:00

After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev 0128fbb0a5
result/bin/apply-formatting $NIXPKGS_PATH
86 lines
2.2 KiB
Nix
86 lines
2.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
options,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.services.prometheus.exporters.junos-czerwonk;
|
|
inherit (lib)
|
|
mkOption
|
|
types
|
|
escapeShellArg
|
|
mkIf
|
|
concatStringsSep
|
|
;
|
|
|
|
configFile =
|
|
if cfg.configuration != null then configurationFile else (escapeShellArg cfg.configurationFile);
|
|
|
|
configurationFile = pkgs.writeText "prometheus-junos-czerwonk-exporter.conf" (
|
|
builtins.toJSON (cfg.configuration)
|
|
);
|
|
in
|
|
{
|
|
port = 9326;
|
|
extraOpts = {
|
|
environmentFile = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = ''
|
|
File containing env-vars to be substituted into the exporter's config.
|
|
'';
|
|
};
|
|
configurationFile = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
description = ''
|
|
Specify the JunOS exporter configuration file to use.
|
|
'';
|
|
};
|
|
configuration = mkOption {
|
|
type = types.nullOr types.attrs;
|
|
default = null;
|
|
description = ''
|
|
JunOS exporter configuration as nix attribute set. Mutually exclusive with the `configurationFile` option.
|
|
'';
|
|
example = {
|
|
devices = [
|
|
{
|
|
host = "router1";
|
|
key_file = "/path/to/key";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
telemetryPath = mkOption {
|
|
type = types.str;
|
|
default = "/metrics";
|
|
description = ''
|
|
Path under which to expose metrics.
|
|
'';
|
|
};
|
|
};
|
|
serviceOpts = {
|
|
serviceConfig = {
|
|
DynamicUser = false;
|
|
EnvironmentFile = mkIf (cfg.environmentFile != null) [ cfg.environmentFile ];
|
|
RuntimeDirectory = "prometheus-junos-czerwonk-exporter";
|
|
ExecStartPre = [
|
|
"${pkgs.writeShellScript "subst-secrets-junos-czerwonk-exporter" ''
|
|
umask 0077
|
|
${pkgs.envsubst}/bin/envsubst -i ${configFile} -o ''${RUNTIME_DIRECTORY}/junos-exporter.json
|
|
''}"
|
|
];
|
|
ExecStart = ''
|
|
${pkgs.prometheus-junos-czerwonk-exporter}/bin/junos_exporter \
|
|
-web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
|
|
-web.telemetry-path ${cfg.telemetryPath} \
|
|
-config.file ''${RUNTIME_DIRECTORY}/junos-exporter.json \
|
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
|
'';
|
|
};
|
|
};
|
|
}
|