()
| 21 | ) |
| 22 | |
| 23 | func (h Histogram) IsFloatHistogram() bool { |
| 24 | _, ok := h.GetCount().(*Histogram_CountFloat) |
| 25 | return ok |
| 26 | } |
| 27 | |
| 28 | // HistogramPromProtoToHistogramProto converts a prometheus protobuf Histogram to cortex protobuf Histogram. |
| 29 | func HistogramPromProtoToHistogramProto(h prompb.Histogram) Histogram { |
no test coverage detected