SampleStream is a stream of Values belonging to an attached COWMetric.
| 173 | |
| 174 | // SampleStream is a stream of Values belonging to an attached COWMetric. |
| 175 | type SampleStream struct { |
| 176 | Metric Metric `json:"metric"` |
| 177 | Values []SamplePair `json:"values"` |
| 178 | Histograms []SampleHistogramPair `json:"histograms"` |
| 179 | } |
| 180 | |
| 181 | func (ss SampleStream) String() string { |
| 182 | valuesLength := len(ss.Values) |
nothing calls this directly
no outgoing calls
no test coverage detected