-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
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
chore: reduce tracing volume #466
Conversation
WalkthroughWalkthroughThe recent changes enhance the management of OpenTelemetry keys and improve logging within the tracing setup process. A new environment variable captures the deployment context, enriching log messages with clearer indications of the operating environment. Additionally, the handling of missing OTLP keys has been refined to provide better fallback indications. The tracing log filter has been updated to exclude specific noisy libraries, ensuring the output remains focused and relevant. Overall, these updates streamline the tracing functionality and enhance user clarity. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant CLI
participant Tracing
participant Logger
User->>CLI: Execute command
CLI->>Tracing: Initialize tracing setup
Tracing->>Tracing: Check for OTLP keys
alt OTLP keys present
Tracing->>Logger: Log OTLP key usage
else OTLP keys absent
Tracing->>Tracing: Check for explicit OTLP endpoint
alt Endpoint found
Tracing->>Logger: Log using default endpoint
else No endpoint
Tracing->>Logger: Log tracing disabled
end
end
CLI->>User: Return command result
Recent review detailsConfiguration used: .coderabbit.yaml Files selected for processing (1)
Files skipped from review as they are similar to previous changes (1)
Additional context usedLearnings (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
On commit 8d58cea, Grit tried to heal these tests:
Tip You can view and edit CI healing settings on the Grit App. |
Also fall back to the default exporter.
Summary by CodeRabbit
New Features
Bug Fixes
Improvements