-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Part 1: Log systemName in DataflowWorkUnitClient, Commit, and core worker states #39561
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: master
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 |
|---|---|---|
|
|
@@ -60,7 +60,9 @@ public void appendSummaryHtml(PrintWriter writer) { | |
| writer.println("Active Keys: <br>"); | ||
| for (ComputationState computationState : allComputationStates.get()) { | ||
| writer.print(computationState.getComputationId()); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. getComputationId here will be useful. Maybe add getSystemName in addition to computationId..
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated to print both |
||
| writer.print(":<br>"); | ||
| writer.print(" ("); | ||
| writer.print(computationState.getSystemName()); | ||
| writer.print("):<br>"); | ||
| computationState.printActiveWork(writer); | ||
| writer.println("<br>"); | ||
| } | ||
|
|
||
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.
can you make sure the values show up as expected in consol logs? consider attaching a screenshot showing the difference with the PR.