summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/influxdb-exporter.nix
blob: 65ec5ff69b4177fe6da0a5a6a27c272be85b3cbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:

buildGoModule rec {
  pname = "influxdb_exporter";
  version = "0.8.0";
  rev = "v${version}";

  src = fetchFromGitHub {
    inherit rev;
    owner = "prometheus";
    repo = "influxdb_exporter";
    sha256 = "sha256-aNj4ru3yDet+jdcEpckFVaymmjWmKzTMPcTxPMNFbgo=";
  };

  vendorSha256 = null;

  buildFlagsArray = let
    goPackagePath = "github.com/prometheus/influxdb_exporter";
  in ''
    -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=unknown
        -X github.com/prometheus/common/version.BuildUser=nix@nixpkgs
        -X github.com/prometheus/common/version.BuildDate=unknown
  '';

  passthru.tests = { inherit (nixosTests.prometheus-exporters) influxdb; };

  meta = with lib; {
    description = "Prometheus exporter that accepts InfluxDB metrics";
    homepage = "https://github.com/prometheus/influxdb_exporter";
    license = licenses.asl20;
    maintainers = with maintainers; [ hexa ];
    platforms = platforms.unix;
  };
}