summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus
diff options
context:
space:
mode:
authorKartik Gokte <kartik.go@media.net>2022-03-02 23:59:27 +0530
committerKartik Gokte <kartik.go@media.net>2022-03-02 23:59:27 +0530
commit3fa7cc7ac697637462f1644421c7309928dcacbd (patch)
treef069adb428a24246a5b9983d1c5062f539da941e /pkgs/servers/monitoring/prometheus
parentf35c016749d4dda82c13adb7d83d38cb38ab4d04 (diff)
downloadnixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.tar
nixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.tar.gz
nixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.tar.bz2
nixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.tar.lz
nixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.tar.xz
nixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.tar.zst
nixpkgs-3fa7cc7ac697637462f1644421c7309928dcacbd.zip
prometheus-pve-exporter: init at 2.2.2
Diffstat (limited to 'pkgs/servers/monitoring/prometheus')
-rw-r--r--pkgs/servers/monitoring/prometheus/pve-exporter.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/servers/monitoring/prometheus/pve-exporter.nix b/pkgs/servers/monitoring/prometheus/pve-exporter.nix
new file mode 100644
index 00000000000..707c121cc50
--- /dev/null
+++ b/pkgs/servers/monitoring/prometheus/pve-exporter.nix
@@ -0,0 +1,37 @@
+{ lib
+, python3
+, nixosTests
+}:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "prometheus-pve-exporter";
+  version = "2.2.2";
+
+  src = python3.pkgs.fetchPypi {
+    inherit pname version;
+    sha256 = "0vvsiw8nj8zkx6v42f260xbsdd92l0ac4vwpm7w38j3qwvanar7k";
+  };
+
+  propagatedBuildInputs = with python3.pkgs; [
+    prometheus-client
+    proxmoxer
+    pyyaml
+    requests
+    werkzeug
+  ];
+
+  doCheck = false;
+
+  pythonImportsCheck = [ "pve_exporter" ];
+
+  passthru.tests = {
+    inherit (nixosTests.prometheus-exporters) pve;
+  };
+
+  meta = with lib; {
+    description = "Exposes information gathered from Proxmox VE cluster for use by the Prometheus monitoring system";
+    homepage = "https://github.com/prometheus-pve/prometheus-pve-exporter";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ nukaduka ];
+  };
+}