{ buildGoModule , fetchFromGitHub , lib , stdenv }: buildGoModule rec { pname = "opentelemetry-collector-contrib"; version = "0.46.0"; src = fetchFromGitHub { owner = "open-telemetry"; repo = "opentelemetry-collector-contrib"; rev = "v${version}"; sha256 = "sha256-VD/gN9lUwzhRTfr8rAQld+4sN+deYhUlNvCphtZncDU="; }; # proxy vendor to avoid hash missmatches between linux and macOS proxyVendor = true; vendorSha256 = "sha256-ojNDDPCo6TGp8BYio/pYykXSLjC5Qplw0WFD9UIiYM4="; subPackages = [ "cmd/otelcontribcol" ]; # 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; 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 ]; }; }