Skip to content
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

feat(vm): Extract batch executor to separate crate #2702

Merged
merged 18 commits into from
Sep 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove duplicate / unused SK metrics
slowli committed Aug 21, 2024
commit a71920a4bef562690edbd30e1c5f6622c30fb7eb
7 changes: 0 additions & 7 deletions core/node/state_keeper/src/metrics.rs
Original file line number Diff line number Diff line change
@@ -81,13 +81,6 @@ pub struct StateKeeperMetrics {
/// The time it takes for transactions to be included in a block. Representative of the time user must wait before their transaction is confirmed.
#[metrics(buckets = INCLUSION_DELAY_BUCKETS)]
pub transaction_inclusion_delay: Family<TxExecutionType, Histogram<Duration>>,
/// Time spent by the state keeper on transaction execution.
#[metrics(buckets = Buckets::LATENCIES)]
pub tx_execution_time: Family<TxExecutionStage, Histogram<Duration>>,
/// Number of times gas price was reported as too high.
pub gas_price_too_high: Counter,
/// Number of times blob base fee was reported as too high.
pub blob_base_fee_too_high: Counter,
/// The time it takes to match seal resolution for each tx.
#[metrics(buckets = Buckets::LATENCIES)]
pub match_seal_resolution: Histogram<Duration>,