| 121 | } |
| 122 | |
| 123 | type SampleHistogram struct { |
| 124 | Count FloatString `json:"count"` |
| 125 | Sum FloatString `json:"sum"` |
| 126 | Buckets HistogramBuckets `json:"buckets"` |
| 127 | } |
| 128 | |
| 129 | func (s SampleHistogram) String() string { |
| 130 | return fmt.Sprintf("Count: %f, Sum: %f, Buckets: %v", s.Count, s.Sum, s.Buckets) |
nothing calls this directly
no outgoing calls
no test coverage detected