Forráskód Böngészése

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
Stanisław Drozd 2 éve
szülő
commit
682e97c61c
1 módosított fájl, 2 hozzáadás és 3 törlés
  1. 2 3
      wormhole-attester/client/src/main.rs

+ 2 - 3
wormhole-attester/client/src/main.rs

@@ -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");
 }