prometheus-junos-czerwonk-exporter: init at 0.10.1 + module (#235433)

Jenny 3a86958c 3b7e34f2

Changed files
+96
nixos
modules
services
monitoring
prometheus
pkgs
servers
monitoring
top-level
+1
nixos/modules/services/monitoring/prometheus/exporters.nix
···
"ipmi"
"json"
"jitsi"
+
"junos-czerwonk"
"kea"
"keylight"
"knot"
+72
nixos/modules/services/monitoring/prometheus/exporters/junos-czerwonk.nix
···
+
{ config, lib, pkgs, options }:
+
+
with lib;
+
+
let
+
cfg = config.services.prometheus.exporters.junos-czerwonk;
+
+
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 = lib.mdDoc ''
+
File containing env-vars to be substituted into the exporter's config.
+
'';
+
};
+
configurationFile = mkOption {
+
type = types.nullOr types.path;
+
default = null;
+
description = lib.mdDoc ''
+
Specify the JunOS exporter configuration file to use.
+
'';
+
};
+
configuration = mkOption {
+
type = types.nullOr types.attrs;
+
default = null;
+
description = lib.mdDoc ''
+
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 = lib.mdDoc ''
+
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}
+
'';
+
};
+
};
+
}
+22
pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix
···
+
{ lib, buildGoModule, fetchFromGitHub }:
+
+
buildGoModule rec {
+
pname = "junos-czerwonk-exporter";
+
version = "0.10.1";
+
+
src = fetchFromGitHub {
+
owner = "czerwonk";
+
repo = "junos_exporter";
+
rev = "${version}";
+
sha256 = "sha256-XYISwq6xcVKhXUK6j22pQ5eOfuKNH0uXOEK1MUzSq90=";
+
};
+
+
vendorSha256 = "sha256-IV0FZb1rjOMLf+vkzz/ZxUBMFD8VRDS51Wdud/yz32E=";
+
+
meta = with lib; {
+
description = "Exporter for metrics from devices running JunOS";
+
homepage = "https://github.com/czerwonk/junos_exporter";
+
license = licenses.mit;
+
maintainers = with maintainers; [ netali ];
+
};
+
}
+1
pkgs/top-level/all-packages.nix
···
prometheus-jitsi-exporter = callPackage ../servers/monitoring/prometheus/jitsi-exporter.nix { };
prometheus-jmx-httpserver = callPackage ../servers/monitoring/prometheus/jmx-httpserver.nix { };
prometheus-json-exporter = callPackage ../servers/monitoring/prometheus/json-exporter.nix { };
+
prometheus-junos-czerwonk-exporter = callPackage ../servers/monitoring/prometheus/junos-czerwonk-exporter.nix { };
prometheus-kea-exporter = callPackage ../servers/monitoring/prometheus/kea-exporter.nix { };
prometheus-keylight-exporter = callPackage ../servers/monitoring/prometheus/keylight-exporter.nix { };
prometheus-knot-exporter = callPackage ../servers/monitoring/prometheus/knot-exporter.nix { };