(o *SampleHistogram)
| 130 | } |
| 131 | |
| 132 | func (s *SampleHistogram) Equal(o *SampleHistogram) bool { |
| 133 | return s == o || (s.Count == o.Count && s.Sum == o.Sum && s.Buckets.Equal(o.Buckets)) |
| 134 | } |
| 135 | |
| 136 | type SampleHistogramPair struct { |
| 137 | Timestamp Time |