about summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus
diff options
context:
space:
mode:
authorclerie <git@clerie.de>2023-12-05 18:53:02 +0100
committerclerie <git@clerie.de>2023-12-06 21:24:17 +0100
commitacf19ab36fbee119e0f96d668cb590c7da271c09 (patch)
tree27b684ff988b493f9b29f0f27f858908dc2e8989 /pkgs/servers/monitoring/prometheus
parentb3caa5f50a90a069b1f9596b48be6cb95d94171b (diff)
downloadnixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.tar
nixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.tar.gz
nixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.tar.bz2
nixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.tar.lz
nixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.tar.xz
nixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.tar.zst
nixlib-acf19ab36fbee119e0f96d668cb590c7da271c09.zip
prometheus-atlas-exporter: init at 1.0.4
Diffstat (limited to 'pkgs/servers/monitoring/prometheus')
-rw-r--r--pkgs/servers/monitoring/prometheus/atlas-exporter.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/servers/monitoring/prometheus/atlas-exporter.nix b/pkgs/servers/monitoring/prometheus/atlas-exporter.nix
new file mode 100644
index 000000000000..ce40a93e66f8
--- /dev/null
+++ b/pkgs/servers/monitoring/prometheus/atlas-exporter.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "atlas-exporter";
+  version = "1.0.4";
+
+  src = fetchFromGitHub {
+    owner = "czerwonk";
+    repo = "atlas_exporter";
+    rev = version;
+    sha256 = "sha256-vhUhWO7fQpUHT5nyxbT8AylgUqDNZRSb+EGRNGZJ14E=";
+  };
+
+  vendorHash = "sha256-tR+OHxj/97AixuAp0Kx9xQsKPAxpvF6hDha5BgMBha0=";
+
+  meta = with lib; {
+    description = "Prometheus exporter for RIPE Atlas measurement results ";
+    homepage = "https://github.com/czerwonk/atlas_exporter";
+    license = licenses.lgpl3;
+    maintainers = with maintainers; [ clerie ];
+  };
+}