pyth-wormhole-attester: v1.3.1, use different manual buckets (#452)

* pyth-wormhole-attester: v1.3.1, use different manual buckets

* Update description in metric registration
This commit is contained in:
Stanisław Drozd 2023-01-05 15:45:30 +01:00 committed by GitHub
parent 0a93d47391
commit 682e97c61c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -104,9 +104,8 @@ lazy_static! {
.expect("FATAL: Could not instantiate LAST_SEQNO_GAUGE");
static ref SOL_RPC_TX_PROCESSING_HIST: Histogram = register_histogram!(
"sol_rpc_tx_processing",
"How long in milliseconds it takes to send a transaction to the Solana RPC",
prometheus::exponential_buckets(0.016, 2.0, 13) // 0.016s, 0.032s, 0.064s, [...], 65.536s
.expect("FATAL: Could not instantiate buckets for SOL_RPC_TX_PROCESSING_HIST")
"How long in seconds it takes to send a transaction to the Solana RPC",
vec![0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.5, 3.0, 3.5, 4.0, 5.0, 10.0, 20.0, 30.0, 60.0] // Buckets, 1.0 = 1 second
)
.expect("FATAL: Could not instantiate SOL_RPC_TX_PROCESSING_HIST");
}