forked from mirrors/nixpkgs
47 lines
1.7 KiB
Nix
47 lines
1.7 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "opentelemetry-collector";
|
|
version = "0.79.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "open-telemetry";
|
|
repo = "opentelemetry-collector";
|
|
rev = "v${version}";
|
|
hash = "sha256-OTddX0hTrcxvU1XI5DSXOYPhVrn3dJ9Ryvr/wf1AHQ0=";
|
|
};
|
|
# there is a nested go.mod
|
|
sourceRoot = "source/cmd/otelcorecol";
|
|
vendorHash = "sha256-Efsgogk3C7oroniRPrl5GwTogBk7lT0XPkbz0ygJh48=";
|
|
|
|
# upstream strongly recommends disabling CGO
|
|
# additionally dependencies have had issues when GCO was enabled that weren't caught upstream
|
|
# https://github.com/open-telemetry/opentelemetry-collector/blob/main/CONTRIBUTING.md#using-cgo
|
|
CGO_ENABLED = 0;
|
|
|
|
preBuild = ''
|
|
# set the build version, can't be done via ldflags
|
|
sed -i -E 's/Version:(\s*)".*"/Version:\1"${version}"/' main.go
|
|
'';
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/open-telemetry/opentelemetry-collector";
|
|
changelog = "https://github.com/open-telemetry/opentelemetry-collector/blob/v${version}/CHANGELOG.md";
|
|
description = "A vendor-agnostic implementation on how to receive, process and export telemetry data";
|
|
longDescription = ''
|
|
The OpenTelemetry Collector offers a vendor-agnostic implementation on how
|
|
to receive, process and export telemetry data. In addition, it removes the
|
|
need to run, operate and maintain multiple agents/collectors in order to
|
|
support open-source telemetry data formats (e.g. Jaeger, Prometheus, etc.)
|
|
sending to multiple open-source or commercial back-ends.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ uri-canva jk ];
|
|
};
|
|
}
|