Split shared OTLP backend import into Sentry, Grafana, and Datadog components#33202
Merged
Conversation
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
mnkiefer
May 19, 2026 04:13
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR splits the shared OTLP backend configuration into backend-specific workflow imports and updates the smoke OTEL workflow to compose them directly.
Changes:
- Replaces the bundled OTLP backend import with separate Sentry, Grafana, and Datadog imports.
- Adds standalone shared OTLP configuration files for Sentry and Grafana, and narrows Datadog to Datadog-only settings.
- Regenerates the smoke OTEL lock file for the new import graph.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/smoke-otel-backends.md |
Imports backend-specific OTLP shared components directly. |
.github/workflows/smoke-otel-backends.lock.yml |
Regenerated compiled workflow for the updated imports. |
.github/workflows/shared/sentry.md |
Adds reusable Sentry OTLP endpoint, headers, and network allowlist. |
.github/workflows/shared/grafana.md |
Adds reusable Grafana OTLP endpoint, headers, and network allowlist. |
.github/workflows/shared/datadog.md |
Narrows shared Datadog config to only Datadog OTLP settings. |
pkg/workflow/expression_extraction_test.go |
Applies formatting cleanup to an existing test case. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 5/6 changed files
- Comments generated: 1
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
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.
This change decomposes the combined OTLP backend shared import into backend-specific shared workflow components. The smoke OTEL workflow now composes Sentry, Grafana, and Datadog explicitly instead of pulling a single bundled import.
What changed
.github/workflows/shared/sentry.md.github/workflows/shared/grafana.md.github/workflows/shared/datadog.md.github/workflows/shared/otlp-backends.mdsmoke-otel-backends.mdto import the three backend-specific files directlysmoke-otel-backends.lock.ymlto reflect the new import graphWhy this shape
Import change