summary refs log tree commit diff
path: root/pkgs/servers/monitoring
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-10 23:36:39 -0500
committerRobin Gloster <mail@glob.in>2021-05-10 23:36:39 -0500
commitb3c592bf085d68a5305639d660db7d3628dd3ca3 (patch)
tree1dbd0e2339b222bf1899f2566c995521d916e367 /pkgs/servers/monitoring
parent21bf56687d01b6bb434e2fad98cdfba8d6bc7533 (diff)
downloadnixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.tar
nixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.tar.gz
nixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.tar.bz2
nixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.tar.lz
nixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.tar.xz
nixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.tar.zst
nixpkgs-b3c592bf085d68a5305639d660db7d3628dd3ca3.zip
prometheus-json-exporter: 0.2.0 -> 0.3.0
Diffstat (limited to 'pkgs/servers/monitoring')
-rw-r--r--pkgs/servers/monitoring/prometheus/json-exporter.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/monitoring/prometheus/json-exporter.nix b/pkgs/servers/monitoring/prometheus/json-exporter.nix
index 796eb065e63..268cdff9348 100644
--- a/pkgs/servers/monitoring/prometheus/json-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/json-exporter.nix
@@ -2,16 +2,16 @@
 
 buildGoModule rec {
   pname = "prometheus-json-exporter";
-  version = "0.2.0";
+  version = "0.3.0";
 
   src = fetchFromGitHub {
     owner = "prometheus-community";
     repo = "json_exporter";
     rev = "v${version}";
-    sha256 = "1aabvd75a2223x5wnbyryigj7grw6l05jhr3g3s97b1f1hfigz6d";
+    sha256 = "0nhww7pbyqpiikcli1ysqa15d4y76h3jaij1j0sj8i3mhv1nsjz9";
   };
 
-  vendorSha256 = "03kb0gklq08krl7qnvs7267siw1pkyy346b42dsk1d9gr5302wsw";
+  vendorSha256 = "1fiy6x06mqxbv9c4rxfl4q7hvblbzhknkpcp0alz61f3fk5wxsgp";
 
   passthru.tests = { inherit (nixosTests.prometheus-exporters) json; };