MCPcopy
hub / github.com/prometheus/prometheus / ChunkSeriesEntry

Struct ChunkSeriesEntry

storage/series.go:35–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33func (s *SeriesEntry) Iterator(it chunkenc.Iterator) chunkenc.Iterator { return s.SampleIteratorFn(it) }
34
35type ChunkSeriesEntry struct {
36 Lset labels.Labels
37 ChunkIteratorFn func(chunks.Iterator) chunks.Iterator
38}
39
40func (s *ChunkSeriesEntry) Labels() labels.Labels { return s.Lset }
41func (s *ChunkSeriesEntry) Iterator(it chunks.Iterator) chunks.Iterator { return s.ChunkIteratorFn(it) }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected