2022-01-28 12:52:58 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
2022-02-25 13:10:40 +00:00
|
|
|
, stdenv
|
2022-01-28 12:52:58 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "opentelemetry-collector-contrib";
|
2022-03-19 02:07:06 +00:00
|
|
|
version = "0.47.0";
|
2022-01-28 12:52:58 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "open-telemetry";
|
|
|
|
repo = "opentelemetry-collector-contrib";
|
|
|
|
rev = "v${version}";
|
2022-03-19 02:07:06 +00:00
|
|
|
sha256 = "sha256-IbpQd01uU6/Ihli+gVDjTB8T8cj//XHoZYcDjXD635Q=";
|
2022-01-28 12:52:58 +00:00
|
|
|
};
|
|
|
|
# proxy vendor to avoid hash missmatches between linux and macOS
|
|
|
|
proxyVendor = true;
|
2022-03-19 02:07:06 +00:00
|
|
|
vendorSha256 = "sha256-1svBCXfutjXfXfVqVHUTAt9T1ON/qbiS+VCt5kP/YIc=";
|
2022-01-28 12:52:58 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/otelcontribcol" ];
|
|
|
|
|
2022-02-25 13:10:40 +00:00
|
|
|
# CGO_ENABLED=0 required for mac - "error: 'TARGET_OS_MAC' is not defined, evaluates to 0"
|
|
|
|
# https://github.com/shirou/gopsutil/issues/976
|
|
|
|
CGO_ENABLED = if stdenv.isLinux then 1 else 0;
|
|
|
|
|
2022-01-28 12:52:58 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X github.com/open-telemetry/opentelemetry-collector-contrib/internal/version.Version=v${version}"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/open-telemetry/opentelemetry-collector-contrib";
|
|
|
|
changelog = "https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/v${version}/CHANGELOG.md";
|
|
|
|
description = "OpenTelemetry Collector superset with additional community collectors";
|
|
|
|
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. The Contrib
|
|
|
|
edition provides aditional vendor specific receivers/exporters and/or
|
|
|
|
components that are only useful to a relatively small number of users and
|
|
|
|
is multiple times larger as a result.
|
|
|
|
'';
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ uri-canva jk ];
|
|
|
|
};
|
|
|
|
}
|