Kristina Pathak
Kristina Pathak
`collector.Container()` returns a `Container` that doesn't include `Port` information. https://github.com/open-telemetry/opentelemetry-operator/blob/7ce297de5415486b568d68466a564fd65fe7d462/pkg/collector/container.go#L88-L98 Will this prevent the Prometheus PodMonitor from finding the collector? How can we add the port information? Are the container...
I noticed that the target allocator files don't have a copyright at the top. Given how uniform it was, I'm not sure if this was intentional, but I added them...
The golangci.yaml doesn't match other configurations in open-telemetry. A few other golanci configurations: https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/29a46c89ab69347be7d6f2c7f4f94135cb4d0d4f/.golangci.yml https://github.com/open-telemetry/opentelemetry-collector/blob/b1329c94b3b31b9ffa4091ab5066d6f091d71f41/.golangci.yml https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/d2490af3003387cc4b1baa5b55f7d748303d7a4b/.golangci.yml I would like to align the operator's lint configuration with the rest of these...
fixes https://github.com/open-telemetry/opentelemetry-operator/issues/1011, adding a way to expose container ports for service and pod monitoring. Uses functions from [this package](https://pkg.go.dev/k8s.io/apimachinery/pkg/util/validation#IsValidPortName) to validate port name and number. If the name is too...
https://github.com/open-telemetry/opentelemetry-operator/blob/e48373c612e5fc9058699aa7139b893bfde58fd0/pkg/collector/parser/receiver.go#L107-L112 Currently, the receivers to skip are hard coded into the `singlePortFromConfigEndpoint()` function. Instead, we can make this configurable with `kubeletstats` and `prometheus` as the default list of receivers to...
https://github.com/open-telemetry/opentelemetry-operator/issues/898
#### Description When running tests, waiting for `downloadModules()` to fail 3 times when that's expected adds time to the test run. This updates tests to only attempt downloading once. Note:...
A continuation of https://github.com/open-telemetry/opentelemetry-collector/pull/9253 Description: Adds a --skip-new-go-module flag to the OTC builder. This enables users working in an existing go module environment (say, a "monorepo") to update the module...
**Is your feature request related to a problem? Please describe.** When building a collector, it's possible to have a mismatch in the core library version and component versions. This can...
Occasionally, an outbound sender cuts off an endpoint and somehow manages to get into a state where it no longer sends any events to that endpoint ever again for the...