Fix Kafka receiver doc and document commonly-needed OTel config settings - #119874
Open
IshwarKanse wants to merge 1 commit into
Open
IshwarKanse wants to merge 1 commit into
IshwarKanse wants to merge 1 commit into
Conversation
…ity/metadata settings Fixes the Kafka Receiver doc's removed `topic` and `auth.plain_text` fields, and adds a few commonly-needed but undocumented settings (k8sattributes pod_association/extract, OTLP gRPC exporter queue/retry, resourcedetection openshift detector overrides) surfaced by upstream regression-detection analysis ahead of the next collector/operator bump. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
@IshwarKanse: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Member
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up on the regression-detection report run against collector/operator v0.158.0 This PR only includes the documentation-affecting findings that are worth fixing/documenting; unrelated findings from the report (bug fixes, feature gates, dependency bumps, etc.) are tracked separately and are out of scope here.
otel-receivers-kafka-receiver.adoc): the documentedtopicandauth.plain_textfields no longer exist upstream and cause the collector to fail to start. Replaced withlogs.topics/metrics.topics/traces.topicsandauth.sasl(+mechanism: PLAIN), documentedauth.kerberos, and added a migration note.otel-receivers-filelog-receiver.adoc): added a note about theordering_criteria.top_n: 0semantics change (now means "read all matched files" instead of "read the first file only").otel-processors-kubernetes-attributes-processor.adoc): documentedextract(metadata/labels) andpod_association, which most real deployments need to get useful metadata beyond the connection-IP default.otel-exporters-otlp-grpc-exporter.adoc): documentedtimeout,sending_queue, andretry_on_failure— core reliability/tuning settings that are enabled by default but were undocumented.otel-processors-resource-detection-processor.adoc): documented theopenshiftdetector'saddress/token/tlsoverrides, needed when the collector can't use the in-cluster API endpoint/token.