-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
fix unexpected TimeSeriesLimitReached after HistogramLimitReached(#60752) #61199
fix unexpected TimeSeriesLimitReached after HistogramLimitReached(#60752) #61199
Conversation
Tagging subscribers to this area: @tarekgh, @tommcdon, @pjanotti Issue DetailsThe problem is from which
|
...ies/System.Diagnostics.DiagnosticSource/src/System/Diagnostics/Metrics/AggregationManager.cs
Show resolved
Hide resolved
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.
Thanks @itn3000!
Are we missing tests that should have flagged this? |
I am merging this as the CI is green. @itn3000 thanks for the fix. Could you please try to add a test for the case we are fixing here? |
Thank you for merging, I will try to create another PR for tests. |
The problem is from which
_currentTimeSeries
is always added even if_currentHistograms
reachesMaxHistograms
.