-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
feat(stats): Display subseries in tooltip #73774
feat(stats): Display subseries in tooltip #73774
Conversation
Bundle ReportChanges will increase total bundle size by 3.08kB ⬆️
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #73774 +/- ##
==========================================
- Coverage 78.12% 78.10% -0.02%
==========================================
Files 6661 6665 +4
Lines 298042 297646 -396
Branches 51278 51200 -78
==========================================
- Hits 232834 232480 -354
+ Misses 58919 58882 -37
+ Partials 6289 6284 -5
|
9e149d5
to
eb53f83
Compare
@@ -115,7 +117,7 @@ class UsageStatsOrganization< | |||
return { | |||
...queryDatetime, | |||
interval: getSeriesApiInterval(dataDatetime), | |||
groupBy: ['category', 'outcome'], | |||
groupBy: ['category', 'outcome', 'reason'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this need to be behind a feature flag?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I recall correctly, no, but let me check again to confirm.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This reverts commit 479ea5a.
PR reverted: 5e2457d |
This reverts commit 479ea5a. Co-authored-by: priscilawebdev <29228205+priscilawebdev@users.noreply.github.com>
Goal
On the stats page, we aim to provide more detailed information about the statistics. Currently, we display the outcomes: Accepted, Filtered, and Dropped, but we should also include specifics about what was filtered and what was dropped.
Before:
After:
Note
Discarded will be included in a follow-up
Part of #59320