fix(slack): Include y-axis aggregate in Explore unfurl title#112693
Merged
DominikB2014 merged 2 commits intomasterfrom Apr 10, 2026
Merged
Conversation
Add Slack unfurl support for Explore Logs URLs (`/explore/logs/`),
alongside the
existing Explore Traces URL support.
The handler detects the URL path to determine logs vs traces, then sets
the
correct dataset (`ourlogs` for logs, `spans` for traces) and title
(`Explore Logs` vs `Explore Traces`). The existing
`map_explore_query_args`
already supported the `aggregateField` param format used by logs URLs,
so only
the URL matching, dataset selection, and title needed to change.
Supports both `/organizations/{slug}/explore/logs/` and customer domain
`{slug}.sentry.io/explore/logs/` URL formats.
Fixes DAIN-1478
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
9a635f0 to
6f820d9
Compare
The unfurl title now includes the aggregates being plotted, e.g. "Explore Traces - avg(span.duration)" or "Explore Logs - count(message)" instead of just "Explore Traces". This matches the Explore page and helps users understand what's being charted at a glance. Fixes DAIN-1489 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6f820d9 to
5bcf510
Compare
narsaynorath
approved these changes
Apr 10, 2026
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.
The Explore unfurl title was a generic "Explore Traces" or "Explore Logs"
which didn't tell the user what was actually being plotted. Now the title
includes the aggregate, e.g. "Explore Traces - avg(span.duration)" or
"Explore Logs - count(message)", matching what the user sees in the Explore
page.
Fixes DAIN-1489