Commit 781890d2 authored by Jakub Sztandera's avatar Jakub Sztandera Committed by GitHub

Merge pull request #10 from vyzo/fix/measure-long-latency-tails

measure: add latency bucket for over 1s tails
parents 84995487 69b37bd1
......@@ -13,7 +13,7 @@ import (
var (
// sort latencies in buckets with following upper bounds in seconds
datastoreLatencyBuckets = []float64{1e-4, 1e-3, 1e-2, 1e-1}
datastoreLatencyBuckets = []float64{1e-4, 1e-3, 1e-2, 1e-1, 1}
// sort sizes in buckets with following upper bounds in bytes
datastoreSizeBuckets = []float64{1 << 6, 1 << 12, 1 << 18, 1 << 24}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment