-
Notifications
You must be signed in to change notification settings - Fork 199
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
Update azure-monitor-opentelemetry-exporter #3356
Conversation
...ain/java/com/microsoft/applicationinsights/agent/internal/diagnostics/DiagnosticsHelper.java
Show resolved
Hide resolved
...ng/src/main/java/com/microsoft/applicationinsights/agent/internal/init/SecondEntryPoint.java
Outdated
Show resolved
Hide resolved
...ing/src/smokeTest/java/com/microsoft/applicationinsights/smoketest/SpringSchedulingTest.java
Show resolved
Hide resolved
...src/smokeTest/java/com/microsoft/applicationinsights/smoketest/AksRoleNameOverridesTest.java
Outdated
Show resolved
Hide resolved
featureList.add(Feature.PREVIEW_DISK_PERSISTENCE_MAX_SIZE_MB); | ||
} | ||
if (!config.preview.useNormalizedValueForNonNormalizedCpuPercentage) { | ||
featureList.add(Feature.PREVIEW_DONT_USE_NORMALIZED); |
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.
sorry, I think I was too brief on my prior comment, we should probably make this a bit clearer (longer 😅), but can do that later
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.
it's just a way to identify the preview feature. do you prefer PREVIEW_DONT_USE_NORMALIZED_VALUE_FOR_NON_NORMALIZED_CPU_PERCENTAGE because of the negation?
this is even longer
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.
ya, it's the negation that I was commenting on
maybe PREVIEW_REPORT_NON_NORMALIZED_CPU_PERCENTAGE
since essentially this setting opts in to (correctly) reporting the non-normalized cpu percentage (we're only not enabling it by default yet due to it being a breaking change)
No description provided.