We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metadata for pods with specific names is not added by k8sprocessor
For example when pod name is collection-sumologic-otelcol-logs-1 then some metadata (e.g. statefulset) are not available in Sumo.
collection-sumologic-otelcol-logs-1
statefulset
There is constant list of pod names patterns to ignore, see this:
// TODO: move these to config with default values podNameIgnorePatterns = []*regexp.Regexp{ regexp.MustCompile(`jaeger-agent`), regexp.MustCompile(`jaeger-collector`), regexp.MustCompile(`otel-collector`), regexp.MustCompile(`otel-agent`), regexp.MustCompile(`collection-sumologic-otelcol`), }
and podNameIgnorePatterns is used in shouldIgnorePod see here.
podNameIgnorePatterns
shouldIgnorePod
The text was updated successfully, but these errors were encountered:
In upstream version of the plugin list of pod names patterns to ignore is configurable open-telemetry/opentelemetry-collector-contrib#3520
Sorry, something went wrong.
docs: update information about known issues
a6252fe
add information about issue with missing metadata for Pods with specific names (#334)
c722e30
rel: https://jira.kumoroku.com/jira/browse/SUMO-179681
pmalek-sumo
Successfully merging a pull request may close this issue.
Metadata for pods with specific names is not added by k8sprocessor
For example when pod name is
collection-sumologic-otelcol-logs-1
then some metadata (e.g.statefulset
) are not available in Sumo.There is constant list of pod names patterns to ignore, see this:
and
podNameIgnorePatterns
is used inshouldIgnorePod
see here.The text was updated successfully, but these errors were encountered: