timescale-prometheus: init at 0.1.0-beta.1

This commit is contained in:
0x4A6F 2020-08-13 17:20:46 +00:00
parent 4bf857a0f2
commit 0dbd3c8d0f
No known key found for this signature in database
GPG key ID: 8DEDBA5BE07080E1
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "timescale-prometheus";
version = "0.1.0-beta.1";
src = fetchFromGitHub {
owner = "timescale";
repo = pname;
rev = "${version}";
sha256 = "1q6xky4h9x4j2f0f6ajxwlnqq1pgd2n0z1ldrcifyamd90qkwcm5";
};
vendorSha256 = "sha256:1vp30y59w8mksqxy9ic37vj1jw4lbq24ahhb08a72rysylw94r57";
doCheck = false;
meta = with stdenv.lib; {
description = "An open-source analytical platform for Prometheus metrics";
homepage = "https://github.com/timescale/timescale-prometheus";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [ maintainers."0x4A6F" ];
};
}

View file

@ -16534,6 +16534,8 @@ in
asciidoc = asciidoc-full;
};
timescale-prometheus = callPackage ../servers/monitoring/timescale-prometheus { };
timescaledb-parallel-copy = callPackage ../development/tools/database/timescaledb-parallel-copy { };
timescaledb-tune = callPackage ../development/tools/database/timescaledb-tune { };