2023-02-02 18:25:31 +00:00
|
|
|
{ lib, stdenv, buildGoModule, fetchFromGitHub, systemd, nixosTests }:
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "grafana-agent";
|
2023-01-20 10:41:00 +00:00
|
|
|
version = "0.30.2";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "grafana";
|
|
|
|
repo = "agent";
|
2023-01-20 10:41:00 +00:00
|
|
|
sha256 = "sha256-yexCK4GBA997CShtuQQTs1GBsXoknUnWWO0Uotb9EG8=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
vendorHash = "sha256-Cl3oygH1RPF+ZdJvkDmr7eyU5daxaZwNE8pQOHK/qP4=";
|
2022-11-04 12:27:35 +00:00
|
|
|
|
|
|
|
ldflags = let
|
|
|
|
prefix = "github.com/grafana/agent/pkg/build";
|
|
|
|
in [
|
|
|
|
"-s" "-w"
|
|
|
|
# https://github.com/grafana/agent/blob/d672eba4ca8cb010ad8a9caef4f8b66ea6ee3ef2/Makefile#L125
|
|
|
|
"-X ${prefix}.Version=${version}"
|
|
|
|
"-X ${prefix}.Branch=v${version}"
|
|
|
|
"-X ${prefix}.Revision=v${version}"
|
|
|
|
"-X ${prefix}.BuildUser=nix"
|
|
|
|
"-X ${prefix}.BuildDate=1980-01-01T00:00:00Z"
|
|
|
|
];
|
2021-07-14 22:03:04 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
tags = [
|
|
|
|
"nonetwork"
|
|
|
|
"nodocker"
|
2022-12-28 21:21:41 +00:00
|
|
|
"promtail_journal_enabled"
|
2021-07-14 22:03:04 +00:00
|
|
|
];
|
2021-02-05 17:12:51 +00:00
|
|
|
|
2022-11-04 12:27:35 +00:00
|
|
|
subPackages = [
|
|
|
|
"cmd/agent"
|
|
|
|
"cmd/agentctl"
|
|
|
|
];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
# uses go-systemd, which uses libsystemd headers
|
|
|
|
# https://github.com/coreos/go-systemd/issues/351
|
2023-02-02 18:25:31 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionals stdenv.isLinux [ "-I${lib.getDev systemd}/include" ];
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
# tries to access /sys: https://github.com/grafana/agent/issues/333
|
|
|
|
preBuild = ''
|
|
|
|
rm pkg/integrations/node_exporter/node_exporter_test.go
|
|
|
|
'';
|
|
|
|
|
|
|
|
# go-systemd uses libsystemd under the hood, which does dlopen(libsystemd) at
|
|
|
|
# runtime.
|
|
|
|
# Add to RUNPATH so it can be found.
|
2023-02-02 18:25:31 +00:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2021-02-05 17:12:51 +00:00
|
|
|
patchelf \
|
|
|
|
--set-rpath "${lib.makeLibraryPath [ (lib.getLib systemd) ]}:$(patchelf --print-rpath $out/bin/agent)" \
|
|
|
|
$out/bin/agent
|
|
|
|
'';
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
passthru.tests.grafana-agent = nixosTests.grafana-agent;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud";
|
|
|
|
license = licenses.asl20;
|
|
|
|
homepage = "https://grafana.com/products/cloud";
|
|
|
|
maintainers = with maintainers; [ flokli ];
|
|
|
|
};
|
|
|
|
}
|