()
| 80 | } |
| 81 | |
| 82 | func (c *ActiveSeries) ActiveNativeHistogram() int { |
| 83 | total := 0 |
| 84 | for s := range numActiveSeriesStripes { |
| 85 | total += c.stripes[s].getActiveNativeHistogram() |
| 86 | } |
| 87 | return total |
| 88 | } |
| 89 | |
| 90 | func (s *activeSeriesStripe) updateSeriesTimestamp(now time.Time, series labels.Labels, fingerprint uint64, nativeHistogram bool, labelsCopy func(labels.Labels) labels.Labels) { |
| 91 | nowNanos := now.UnixNano() |