summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/statsd_bridge/default.nix
blob: da15952f0f379b2a2a0028eca1b4a3df06ac5ac3 (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
{ stdenv, lib, goPackages, fetchFromGitHub }:

goPackages.buildGoPackage rec {
  name = "prometheus-statsd-bridge-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "9715b183150c7bed8a10affb23d33fb55c597180";
  goPackagePath = "github.com/prometheus/statsd_bridge";

  src = fetchFromGitHub {
    inherit rev;
    owner = "prometheus";
    repo = "statsd_bridge";
    sha256 = "119024xb08qjwbhplpl5d94bjdfhn92w4ffn4kxr7aviri1gynfz";
  };

  buildInputs = with goPackages; [
    fsnotify
    prometheus.client_golang
  ];

  meta = with lib; {
    description = "Receives StatsD-style metrics and exports them to Prometheus";
    homepage = https://github.com/prometheus/statsd_bridge;
    license = licenses.asl20;
    maintainers = with maintainers; [ benley ];
    platforms = platforms.unix;
  };
}