Reputation: 1449
I understand using OpenTelemetry in Kubernetes for monitoring the pod itself, like metrics and traces, but does OpenTelemetry support monitoring the Kubernetes Cluster itself, i.e etcd, apiserver, kublet.? Are there examples that can be shared that demonstrate this capability ? Or do I need to use Prometheus for same?
Upvotes: 0
Views: 520
Reputation: 1433
There are receivers for the OpenTelemetry Collector in beta or alpha right now. You should be looking at the Collector anyway for any OpenTelemetry in production.
To help you understand the role of the Collector, see my post.
Then you could export your metrics to something like Prometheus via an exporter plugin to the Collector.
Upvotes: 1