-
Notifications
You must be signed in to change notification settings - Fork 132
feat(l1): upgrade execution breakdown pie chart and add new panels #5220
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
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
d443b82
initial tests
rodrigo-o 972462f
Add changes in tracing instrumentation
rodrigo-o 2147724
Merge remote-tracking branch 'origin/main' into execution-breakdown-b…
rodrigo-o 7e79d4e
change increse for irate and fix a name
rodrigo-o 4a1d297
fixed the difference with the calculation of ms
rodrigo-o e102b28
Added block unit correctly
rodrigo-o 26dd600
try to add the block number unit correctly
rodrigo-o 5c0ed90
Fixed an issue with missing data points and fixed the breakdown pie c…
rodrigo-o 4a12363
fix missing blanks
rodrigo-o bed28de
removed the old span initialization in apply_updates
rodrigo-o 91ea1c2
Added new panels to showcase the compleate breakdown
rodrigo-o 9fade45
Added instance to title of new panels
rodrigo-o 73db6ce
move block breakdown panels below server info
rodrigo-o 2a3f0c2
Move execution breakdown below execution processing and change repeat…
rodrigo-o 93b0ae4
effectively move the repeated panels to the breakdown eow
rodrigo-o c16003e
Make labels of the pie chart appear to the right
rodrigo-o 9c4fdbf
go back to previous version and just change the placement of the pie …
rodrigo-o ee78e3d
reverted name instrumentation changes to tackle them in a future PR
rodrigo-o 3fa951f
remove unused instrument import from store
rodrigo-o 626e552
Fixed one missing changed name
rodrigo-o 26ddf75
Merge branch 'main' into execution-breakdown-by-block
rodrigo-o 92fa529
fix typos
rodrigo-o File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -73,7 +73,6 @@ impl Evm { | |
| } | ||
| } | ||
|
|
||
| #[instrument(level = "trace", name = "Block execution", skip_all)] | ||
|
Collaborator
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. We are not instrumenting other non-pipeline related functions, if we want to do so we might need to do it in a following PR. |
||
| pub fn execute_block(&mut self, block: &Block) -> Result<BlockExecutionResult, EvmError> { | ||
| LEVM::execute_block(block, &mut self.db, self.vm_type) | ||
| } | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back 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.
This was already instrumented at
handle_merkleization, if it was intended to be part of the non-pipeline instrumentation, we need to do it in a follow-up.