-
Notifications
You must be signed in to change notification settings - Fork 113
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
Adding EventMeter
Trigger
#3812
Merged
Merged
Conversation
This file contains 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
src/Tools/dotnet-monitor/CollectionRules/Triggers/SystemDiagnosticsMetricsTriggerFactory.cs
Outdated
Show resolved
Hide resolved
kkeirstead
commented
Feb 28, 2023
src/Microsoft.Diagnostics.Monitoring.Options/OptionsDisplayStrings.resx
Outdated
Show resolved
Hide resolved
…Name being silently accepted. Updated schema.
src/Tests/Microsoft.Diagnostics.Monitoring.ConfigurationSchema/SchemaGenerator.cs
Outdated
Show resolved
Hide resolved
wiktork
reviewed
Mar 2, 2023
src/Tools/dotnet-monitor/CollectionRules/Options/Triggers/SystemDiagnosticsMetricsOptions.cs
Outdated
Show resolved
Hide resolved
wiktork
reviewed
Mar 6, 2023
src/Microsoft.Diagnostics.Monitoring.Options/OptionsDisplayStrings.resx
Outdated
Show resolved
Hide resolved
wiktork
reviewed
Mar 6, 2023
src/Tests/Microsoft.Diagnostics.Monitoring.Tool.UnitTests/CollectionRuleOptionsTests.cs
Outdated
Show resolved
Hide resolved
wiktork
reviewed
Mar 6, 2023
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.
Looks good, minus the additional properties for Provider/CounterName, which I think we should remove.
wiktork
previously approved these changes
Mar 10, 2023
jander-msft
reviewed
Mar 10, 2023
jander-msft
reviewed
Mar 15, 2023
jander-msft
reviewed
Mar 15, 2023
jander-msft
reviewed
Mar 15, 2023
jander-msft
reviewed
Mar 15, 2023
src/Microsoft.Diagnostics.Monitoring.Options/OptionsDisplayStrings.resx
Outdated
Show resolved
Hide resolved
Co-authored-by: Justin Anderson <[email protected]>
Co-authored-by: Justin Anderson <[email protected]>
Co-authored-by: Justin Anderson <[email protected]>
jander-msft
reviewed
Mar 15, 2023
src/Tests/Microsoft.Diagnostics.Monitoring.Tool.UnitTests/CollectionRulePipelineTests.cs
Outdated
Show resolved
Hide resolved
jander-msft
approved these changes
Mar 15, 2023
kkeirstead
added
the
update-release-notes
Pull requests that should be mentioned in the release notes
label
Mar 15, 2023
kkeirstead
changed the title
Adding
Adding Mar 15, 2023
SystemDiagnosticsMetrics
TriggerEventMeter
Trigger
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.
Summary
This PR adds a trigger for
SystemDiagnosticsMetrics
. The options are similar to theEventCounter
trigger, with two differences:CounterName
,InstrumentName
is used (there had previously been some discussion about unifying these names to reduce mental burden for users - I'm leaving it as is for now, but think it's worth discussing on this PR).HistogramPercentile
that allows users to set which percentile they want to compare against for theGreaterThan
/LessThan
value. For now, this value would be either 50/95/99.Docs and tests have been updated as part of this PR.
There is also a PR in the diagnostics repo for this feature.
Release Notes Entry
Added EventMeter Trigger for Collection Rules.