-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Record additional profiling information for remotely executed actions. #15348
Conversation
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 post an example screenshot of a profile with this new info?
|
||
logProfileTask(converter, executedActionMetadata.getQueuedTimestamp(), | ||
executedActionMetadata.getWorkerStartTimestamp(), | ||
REMOTE_QUEUE, "Remote execution queuing time"); |
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.
Consider using just REMOTE_QUEUE.toString()
here (and similar below) instead of the full description. I think that the enum names are still easy to read for humans and much shorter, so you don't see abbreviations like Remote execu...
like you do now.
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 consider removing Remote ...
prefix as they are all under execute remotely
span.
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.
Done.
|
||
logProfileTask(converter, executedActionMetadata.getQueuedTimestamp(), | ||
executedActionMetadata.getWorkerStartTimestamp(), | ||
REMOTE_QUEUE, "Remote execution queuing time"); |
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 consider removing Remote ...
prefix as they are all under execute remotely
span.
@bazel-io flag |
@bazel-io fork 5.2.0 |
No description provided.