feat(conversations): Add usage chart to the conversations list - #120552
Merged
Conversation
Surface cost, message volume, and conversation count over time above the conversations list so users can spot trends without opening individual conversations. The chart honors the page's existing project, agent, and search filters, and lets users switch metric, chart type, and time interval. Gated behind the conversations redesign feature flag. Co-Authored-By: Claude <noreply@anthropic.com>
ArthurKnaus
marked this pull request as ready for review
July 24, 2026 11:30
Contributor
📊 Type Coverage Diff
🔍 2 new type safety issues introducedType assertions (
This is informational only and does not block the PR. |
The chart-type and interval trigger labels resolved to `string | undefined`, which isn't assignable to the button's required children. Hoist them into guaranteed-string variables with sensible fallbacks. Co-Authored-By: Claude <noreply@anthropic.com>
vgrozdanic
approved these changes
Jul 24, 2026
vgrozdanic
left a comment
Member
There was a problem hiding this comment.
We might end up with weird numbers because we can end up in downsampled tier and extrapolation might kick in (for unique counts there's no extrapolation), but let's see how it feels and we can always iterate on this
Christinarlong
pushed a commit
that referenced
this pull request
Jul 24, 2026
Add a chart above the conversations list showing cost, message volume, or conversation count over time, so users can spot trends without opening individual conversations. The chart reuses the page's existing project, agent, and search filters, and lets users switch the metric, toggle line/bar, and pick the time interval. Gated behind the conversations redesign feature flag. Depends on #120551 registering the new `api.explore.conversations.*` referrers Closes TET-2739
3 tasks
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.
Add a chart above the conversations list showing cost, message volume, or
conversation count over time, so users can spot trends without opening
individual conversations.
The chart reuses the page's existing project, agent, and search filters, and
lets users switch the metric, toggle line/bar, and pick the time interval.
Gated behind the conversations redesign feature flag.
Depends on #120551 registering the new
api.explore.conversations.*referrers
Closes TET-2739