Skip to content

Commit 0904fd3

Browse files
authored
[Storage] Add a metric to show the latency of k/v read inside put_stats_and_indices. (aptos-labs#3445)
1 parent 04e39cb commit 0904fd3

File tree

1 file changed

+7
-1
lines changed
  • storage/aptosdb/src/state_store

1 file changed

+7
-1
lines changed

storage/aptosdb/src/state_store/mod.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
//! This file defines state store APIs that are related account state Merkle tree.
55
6-
use crate::epoch_by_version::EpochByVersionSchema;
76
use crate::{
7+
epoch_by_version::EpochByVersionSchema,
88
metrics::{STATE_ITEMS, TOTAL_STATE_BYTES},
99
schema::state_value::StateValueSchema,
1010
stale_state_value_index::StaleStateValueIndexSchema,
@@ -490,6 +490,9 @@ impl StateStore {
490490
}
491491

492492
pub fn get_usage(&self, version: Option<Version>) -> Result<StateStorageUsage> {
493+
let _timer = OTHER_TIMERS_SECONDS
494+
.with_label_values(&["get_usage"])
495+
.start_timer();
493496
self.state_db.get_state_storage_usage(version)
494497
}
495498

@@ -541,6 +544,9 @@ impl StateStore {
541544
{
542545
old_value_opt.map(|value| (old_version, value))
543546
} else if let Some(base_version) = base_version {
547+
let _timer = OTHER_TIMERS_SECONDS
548+
.with_label_values(&["put_stats_and_indices/get_state_value"])
549+
.start_timer();
544550
self.state_db
545551
.get_state_value_with_version_by_version(key, base_version)?
546552
} else {

0 commit comments

Comments
 (0)