style(metrics): rename get from peers stats

This commit is contained in:
Tommy PAGEARD 2020-07-08 19:01:58 +02:00
parent fb2028f2ff
commit 6308e62bbb

View File

@ -195,16 +195,16 @@ type flightGroup interface {
// Stats are per-group statistics. // Stats are per-group statistics.
type Stats struct { type Stats struct {
Gets AtomicInt // any Get request, including from peers Gets AtomicInt // any Get request, including from peers
CacheHits AtomicInt // either cache was good CacheHits AtomicInt // either cache was good
GetFromPeersSlowestDuration AtomicInt // slowest duration to request value from peers GetFromPeersLatencyLower AtomicInt // slowest duration to request value from peers
PeerLoads AtomicInt // either remote load or remote cache hit (not an error) PeerLoads AtomicInt // either remote load or remote cache hit (not an error)
PeerErrors AtomicInt PeerErrors AtomicInt
Loads AtomicInt // (gets - cacheHits) Loads AtomicInt // (gets - cacheHits)
LoadsDeduped AtomicInt // after singleflight LoadsDeduped AtomicInt // after singleflight
LocalLoads AtomicInt // total good local loads LocalLoads AtomicInt // total good local loads
LocalLoadErrs AtomicInt // total bad local loads LocalLoadErrs AtomicInt // total bad local loads
ServerRequests AtomicInt // gets that came over the network from peers ServerRequests AtomicInt // gets that came over the network from peers
} }
// Name returns the name of the group. // Name returns the name of the group.
@ -339,8 +339,8 @@ func (g *Group) load(ctx context.Context, key string, dest Sink) (value ByteView
duration := int64(time.Since(start)) / int64(time.Millisecond) duration := int64(time.Since(start)) / int64(time.Millisecond)
// metrics only store the slowest duration // metrics only store the slowest duration
if g.Stats.GetFromPeersSlowestDuration.Get() < duration { if g.Stats.GetFromPeersLatencyLower.Get() < duration {
g.Stats.GetFromPeersSlowestDuration.Store(duration) g.Stats.GetFromPeersLatencyLower.Store(duration)
} }
if err == nil { if err == nil {