-
Notifications
You must be signed in to change notification settings - Fork 295
add metric filter for gcperfsim test #5186
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -362,13 +362,10 @@ public static IReadOnlyList<ComparisonResult> GenerateTable(GCPerfSimConfigurati | |
|
|
||
| string propertyNameToCheck = property.Name.ToLowerInvariant(); | ||
|
|
||
| // TODO: Add the property filter logic back in. | ||
| /* | ||
| if (!requestedPropertyNames.Contains(propertyNameToCheck)) | ||
| { | ||
| //continue; | ||
| continue; | ||
|
Comment on lines
363
to
+367
|
||
| } | ||
| */ | ||
|
|
||
| ComparisonResult result = resultItemComparison.GetComparison(property.Name); | ||
| comparisonResults.Add(result); | ||
|
|
||
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.
With the filter enabled, any
Output.Columnsentries that don’t match aResultItemproperty name (after normalization) will be silently omitted from Results.json. Several existing GCPerfSim YAML configs still use legacy labels likeCount,Speed, andtotal pause time (msec), which don’t map toResultItemproperties, so this change can unexpectedly drop metrics for those scenarios. Consider adding an alias/back-compat mapping (or warning on unmatched column names), or update the other GCPerfSim YAML configs to canonical property names in the same PR.