nixos/prometheus-exporters/artifactory: init at 1.9.0

Adds a Prometheus exporter to scrape metrics from the API of JFrog
Artifactory instances.

Changed files
+112
nixos
modules
services
monitoring
prometheus
tests
pkgs
servers
monitoring
top-level
+1
nixos/modules/services/monitoring/prometheus/exporters.nix
···
exporterOpts = genAttrs [
"apcupsd"
+
"artifactory"
"bind"
"bird"
"blackbox"
+59
nixos/modules/services/monitoring/prometheus/exporters/artifactory.nix
···
+
{ config, lib, pkgs, options }:
+
+
with lib;
+
+
let
+
cfg = config.services.prometheus.exporters.artifactory;
+
in
+
{
+
port = 9531;
+
extraOpts = {
+
scrapeUri = mkOption {
+
type = types.str;
+
default = "http://localhost:8081/artifactory";
+
description = ''
+
URI on which to scrape JFrog Artifactory.
+
'';
+
};
+
+
artiUsername = mkOption {
+
type = types.str;
+
description = ''
+
Username for authentication against JFrog Artifactory API.
+
'';
+
};
+
+
artiPassword = mkOption {
+
type = types.str;
+
default = "";
+
description = ''
+
Password for authentication against JFrog Artifactory API.
+
One of the password or access token needs to be set.
+
'';
+
};
+
+
artiAccessToken = mkOption {
+
type = types.str;
+
default = "";
+
description = ''
+
Access token for authentication against JFrog Artifactory API.
+
One of the password or access token needs to be set.
+
'';
+
};
+
};
+
serviceOpts = {
+
serviceConfig = {
+
ExecStart = ''
+
${pkgs.prometheus-artifactory-exporter}/bin/artifactory_exporter \
+
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
+
--artifactory.scrape-uri ${cfg.scrapeUri} \
+
${concatStringsSep " \\\n " cfg.extraFlags}
+
'';
+
Environment = [
+
"ARTI_USERNAME=${cfg.artiUsername}"
+
"ARTI_PASSWORD=${cfg.artiPassword}"
+
"ARTI_ACCESS_TOKEN=${cfg.artiAccessToken}"
+
];
+
};
+
};
+
}
+15
nixos/tests/prometheus-exporters.nix
···
'';
};
+
artifactory = {
+
exporterConfig = {
+
enable = true;
+
artiUsername = "artifactory-username";
+
artiPassword = "artifactory-password";
+
};
+
exporterTest = ''
+
wait_for_unit("prometheus-artifactory-exporter.service")
+
wait_for_open_port(9531)
+
succeed(
+
"curl -sSf http://localhost:9531/metrics | grep -q 'artifactory_up'"
+
)
+
'';
+
};
+
bind = {
exporterConfig = {
enable = true;
+36
pkgs/servers/monitoring/prometheus/artifactory-exporter.nix
···
+
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
+
+
buildGoModule rec {
+
pname = "artifactory_exporter";
+
version = "1.9.0";
+
rev = "v${version}";
+
+
src = fetchFromGitHub {
+
owner = "peimanja";
+
repo = pname;
+
rev = rev;
+
sha256 = "1zmkajg48i40jm624p2h03bwg7w28682yfcgk42ig3d50p8xwqc3";
+
};
+
+
vendorSha256 = "1594bpfwhbjgayf4aacs7rfjxm4cnqz8iak8kpm1xzsm1cx1il17";
+
+
subPackages = [ "." ];
+
+
buildFlagsArray = ''
+
-ldflags=
+
-s -w
+
-X github.com/prometheus/common/version.Version=${version}
+
-X github.com/prometheus/common/version.Revision=${rev}
+
-X github.com/prometheus/common/version.Branch=master
+
-X github.com/prometheus/common/version.BuildDate=19700101-00:00:00
+
'';
+
+
passthru.tests = { inherit (nixosTests.prometheus-exporters) artifactory; };
+
+
meta = with lib; {
+
description = "JFrog Artifactory Prometheus Exporter";
+
homepage = "https://github.com/peimanja/artifactory_exporter";
+
license = licenses.asl20;
+
maintainers = with maintainers; [ lbpdt ];
+
};
+
}
+1
pkgs/top-level/all-packages.nix
···
prometheus = callPackage ../servers/monitoring/prometheus { };
prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { };
prometheus-apcupsd-exporter = callPackage ../servers/monitoring/prometheus/apcupsd-exporter.nix { };
+
prometheus-artifactory-exporter = callPackage ../servers/monitoring/prometheus/artifactory-exporter.nix { };
prometheus-aws-s3-exporter = callPackage ../servers/monitoring/prometheus/aws-s3-exporter.nix { };
prometheus-bind-exporter = callPackage ../servers/monitoring/prometheus/bind-exporter.nix { };
prometheus-bird-exporter = callPackage ../servers/monitoring/prometheus/bird-exporter.nix { };