about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/prometheus/json-exporter.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/monitoring/prometheus/json-exporter.nix')
-rw-r--r--nixpkgs/pkgs/servers/monitoring/prometheus/json-exporter.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/monitoring/prometheus/json-exporter.nix b/nixpkgs/pkgs/servers/monitoring/prometheus/json-exporter.nix
new file mode 100644
index 000000000000..aeb7b7445a5d
--- /dev/null
+++ b/nixpkgs/pkgs/servers/monitoring/prometheus/json-exporter.nix
@@ -0,0 +1,30 @@
+# This file was generated by go2nix.
+{ buildGoPackage, fetchFromGitHub, fetchpatch, lib }:
+
+buildGoPackage rec {
+  name = "prometheus-json-exporter-${version}";
+  version = "unstable-2017-10-06";
+
+  goPackagePath = "github.com/kawamuray/prometheus-json-exporter";
+
+  src = fetchFromGitHub {
+    owner = "kawamuray";
+    repo = "prometheus-json-exporter";
+    rev = "51e3dc02a30ab818bb73e5c98c3853231c2dbb5f";
+    sha256 = "1v1p4zcqnb3d3rm55r695ydn61h6gz95f55cpa22hzw18dasahdh";
+  };
+
+  goDeps = ./json-exporter_deps.nix;
+
+  patches = [(fetchpatch { # adds bool support
+    url = "https://patch-diff.githubusercontent.com/raw/kawamuray/prometheus-json-exporter/pull/17.patch";
+    sha256 = "0mc5axhd2bykci41dgswl4r1552d70jsmb17lbih7czhsy6rgmrm";
+  })];
+
+  meta = with lib; {
+    description = "A prometheus exporter which scrapes remote JSON by JSONPath";
+    homepage = https://github.com/kawamuray/prometheus-json-exporter;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ willibutz ];
+  };
+}