summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/statsd-bridge.nix
blob: 935692bfa2e08c7213488c3e25981dd1801b8ba3 (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
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "statsd_bridge-${version}";
  version = "0.3.0";
  rev = version;

  goPackagePath = "github.com/prometheus/statsd_bridge";

  src = fetchFromGitHub {
    inherit rev;
    owner = "prometheus";
    repo = "statsd_exporter";
    sha256 = "1gg9v224n05khcwy27637w3rwh0cymm7hx6bginfxd7730rmpp2r";
  };

  goDeps = ./statsd-bridge_deps.json;

  meta = with stdenv.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;
  };
}