File tree 1 file changed +7
-1
lines changed
storage/aptosdb/src/state_store
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 3
3
4
4
//! This file defines state store APIs that are related account state Merkle tree.
5
5
6
- use crate :: epoch_by_version:: EpochByVersionSchema ;
7
6
use crate :: {
7
+ epoch_by_version:: EpochByVersionSchema ,
8
8
metrics:: { STATE_ITEMS , TOTAL_STATE_BYTES } ,
9
9
schema:: state_value:: StateValueSchema ,
10
10
stale_state_value_index:: StaleStateValueIndexSchema ,
@@ -490,6 +490,9 @@ impl StateStore {
490
490
}
491
491
492
492
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 ( ) ;
493
496
self . state_db . get_state_storage_usage ( version)
494
497
}
495
498
@@ -541,6 +544,9 @@ impl StateStore {
541
544
{
542
545
old_value_opt. map ( |value| ( old_version, value) )
543
546
} 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 ( ) ;
544
550
self . state_db
545
551
. get_state_value_with_version_by_version ( key, base_version) ?
546
552
} else {
You can’t perform that action at this time.
0 commit comments