2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildGoPackage, fetchFromGitHub, nixosTests }:
|
2016-06-05 12:59:43 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "collectd-exporter";
|
2016-07-18 18:25:35 +00:00
|
|
|
version = "0.3.1";
|
2016-06-05 12:59:43 +00:00
|
|
|
rev = version;
|
|
|
|
|
|
|
|
goPackagePath = "github.com/prometheus/collectd_exporter";
|
|
|
|
|
2016-06-06 10:26:56 +00:00
|
|
|
src= fetchFromGitHub {
|
2016-06-05 12:59:43 +00:00
|
|
|
inherit rev;
|
2016-06-06 10:26:56 +00:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "collectd_exporter";
|
2016-07-18 18:25:35 +00:00
|
|
|
sha256 = "1p0kb7c8g0r0sp5a6xrx8vnwbw14hhwlqzk4n2xx2y8pvnbivajz";
|
2016-06-05 12:59:43 +00:00
|
|
|
};
|
|
|
|
|
2020-06-18 10:48:40 +00:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) collectd; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-05 12:59:43 +00:00
|
|
|
description = "Relay server for exporting metrics from collectd to Prometheus";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/prometheus/collectd_exporter";
|
2016-06-05 12:59:43 +00:00
|
|
|
license = licenses.asl20;
|
2016-12-01 00:37:37 +00:00
|
|
|
maintainers = with maintainers; [ benley fpletz ];
|
2016-06-05 12:59:43 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|