SumoLogic / sumologic-otel-collector

Sumo Logic Distribution for OpenTelemetry Collector
Apache License 2.0
40 stars 38 forks source link

Unmaintained Library In Use, Another Option Suggestion #1575

Open Dylan-M opened 5 months ago

Dylan-M commented 5 months ago

For processes, this exporter us currently using: https://github.com/mitchellh/go-ps/

This library has been unmaintained for 5 years. It does not support NetBSD, OpenBSD, or AIX. All of which are things my team is building for.

The majority of collector components are using this library instead: https://github.com/shirou/gopsutil

It handles a lot more in terms of both OS and capabilities.

For now, I've had to remove your exporter from our builds, but I would like to include it.

swiatekm commented 4 months ago

The exporter is not using that directly, but rather inheriting it from our extension, which it uses as a dependency. https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/33403 will resolve this issue.

Dylan-M commented 4 months ago

@swiatekm-sumo Thank you for the update. I'm looking forward to it.