-
Notifications
You must be signed in to change notification settings - Fork 11
fix: removing Filtering for exit calls cell in trace table #772
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #772 +/- ##
=======================================
Coverage 85.38% 85.38%
=======================================
Files 789 789
Lines 16145 16145
Branches 2060 2060
=======================================
Hits 13785 13785
Misses 2329 2329
Partials 31 31
Continue to review full report at Codecov.
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
}) | ||
export class ExitCallsTableCellRendererComponent extends TableCellRendererBase<CellData, Trace> implements OnInit { | ||
public readonly apiCalleeNameCount: string[][]; | ||
public readonly apiCalleeNameEntires: [string, string][]; |
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.
public readonly apiCalleeNameEntires: [string, string][]; | |
public readonly apiCalleeNameEntries: [string, string][]; |
(and references)
public readonly apiExitCalls: number; | ||
public readonly maxShowApiCalleeNameCount: number = 10; | ||
public readonly totalCountOfDifferentApiCallee!: number; | ||
public readonly MAX_API_CALLEE_TO_SHOW: number = 10; |
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 a const like this, we should make it static (and lift it above the instance vars)
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.
also, please rename to MAX_API_CALLEES_TO_SHOW
public readonly maxShowApiCalleeNameCount: number = 10; | ||
public readonly totalCountOfDifferentApiCallee!: number; | ||
public readonly MAX_API_CALLEE_TO_SHOW: number = 10; | ||
public readonly uniqueApiCallee: number; |
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.
I'd recommend uniqueApiCalleeCount
public readonly apiExitCalls: number; | ||
public readonly maxShowApiCalleeNameCount: number = 10; | ||
public readonly totalCountOfDifferentApiCallee!: number; | ||
public readonly MAX_API_CALLEE_TO_SHOW: number = 10; |
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.
also, please rename to MAX_API_CALLEES_TO_SHOW
Description
Removing Filtering for exit calls cell in trace table
Testing
Local testing done
Checklist: