Jina Jain
Jina Jain
There was a similar discussion in this now [closed PR](https://github.com/open-telemetry/semantic-conventions/pull/349/files) on semantic-conventions. We were looking at a different set of standard labels in the PR than the ones being discussed...
It should be okay to mount only certain paths from host filesystem. As a reference, the Splunk distro chart [here](https://github.com/signalfx/splunk-otel-collector-chart/blob/main/helm-charts/splunk-otel-collector/templates/daemonset.yaml#L373-L390) mounts some select paths. We can update upstream with these,...
Looks like the operator generates the daemonset manifest and it is not part of the chart itself. I see the operator does set the policy to [`ClusterFirstWithHostNet` for `hostNetwork =...
If the service has the selectors set, then, yes, the endpoint controller will get pods which have labels matching the service's selectors in the same namespace only. But k8s services...
It looks like the incoming metrics/logs have a `container.id` value which does not match any of the actual containers in the pod in question. The `k8sattribute` processor can't lookup the...
I believe this issue is also impacting the `k8s.node.network.*` metrics. We are only reporting the default interface for node networkstats. The [default interface is hardcoded to `eth0`](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/stats/helper.go#L36C7-L36C34) in kubelet it...
What does "node_limit" mean here? Is it referring to the host's capacity or the [node allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable) (capacity - system/kube reserved)? I find node_limit to be ambiguous but my assumption would...
It looks like we'd be introducing more combinations of utilization metric for different resource types `cpu/memory/ephemeral_storage` for both `k8s.container` and `k8s.pod`. Are pre-computed utilization metric for different limits like we...
> Wouldn't that mean that we will have the same metric potentially emitted from 2 different receivers at the same time? I think it is acceptable to have some metrics...
I haven't looked at IPAM/network setup in AKS specifically, but I would guess the pod IP might be getting SNAT'd to that of the node's primary ip address, possibly due...