| 687 | } |
| 688 | |
| 689 | type TimeSeries struct { |
| 690 | Labels []LabelAdapter `protobuf:"bytes,1,rep,name=labels,proto3,customtype=LabelAdapter" json:"labels"` |
| 691 | // Sorted by time, oldest sample first. |
| 692 | Samples []Sample `protobuf:"bytes,2,rep,name=samples,proto3" json:"samples"` |
| 693 | Exemplars []Exemplar `protobuf:"bytes,3,rep,name=exemplars,proto3" json:"exemplars"` |
| 694 | Histograms []WrappedHistogram `protobuf:"bytes,4,rep,name=histograms,proto3,customtype=WrappedHistogram" json:"histograms"` |
| 695 | } |
| 696 | |
| 697 | func (m *TimeSeries) Reset() { *m = TimeSeries{} } |
| 698 | func (*TimeSeries) ProtoMessage() {} |
nothing calls this directly
no outgoing calls
no test coverage detected