2021-05-11 20:01:25 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-06-05 15:25:07 +01:00
|
|
|
|
2021-05-11 20:01:25 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "statsd_exporter";
|
2022-02-13 07:35:24 +00:00
|
|
|
version = "0.22.2";
|
2016-06-05 15:25:07 +01:00
|
|
|
|
2016-06-06 11:26:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-08-27 22:18:42 +01:00
|
|
|
rev = "v${version}";
|
2016-06-06 11:26:56 +01:00
|
|
|
owner = "prometheus";
|
2016-06-28 14:32:22 +01:00
|
|
|
repo = "statsd_exporter";
|
2022-02-13 07:35:24 +00:00
|
|
|
sha256 = "sha256-pLzUbeSCMV0yr4gSR7m6NYrpm8ZhCPbwwZ5nQzy6lEM=";
|
2016-06-05 15:25:07 +01:00
|
|
|
};
|
|
|
|
|
2022-02-13 07:35:24 +00:00
|
|
|
vendorSha256 = "sha256-gBeeOxnVT0+x33VuwZhfjk3Fb8JHZdAzaDuFZlUfdgM=";
|
2021-05-11 20:01:25 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-05 15:25:07 +01:00
|
|
|
description = "Receives StatsD-style metrics and exports them to Prometheus";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/prometheus/statsd_exporter";
|
2016-06-05 15:25:07 +01:00
|
|
|
license = licenses.asl20;
|
2019-04-21 21:06:06 +01:00
|
|
|
maintainers = with maintainers; [ benley ivan ];
|
2016-06-05 15:25:07 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|