()
| 141 | } |
| 142 | |
| 143 | func (s *QueryStats) LoadFetchedSeries() uint64 { |
| 144 | if s == nil { |
| 145 | return 0 |
| 146 | } |
| 147 | |
| 148 | return atomic.LoadUint64(&s.FetchedSeriesCount) |
| 149 | } |
| 150 | |
| 151 | func (s *QueryStats) AddFetchedChunkBytes(bytes uint64) { |
| 152 | if s == nil { |
no outgoing calls