diff --git a/receiver/prometheusreceiver/internal/transaction.go b/receiver/prometheusreceiver/internal/transaction.go index 00728449629d..b3e75172ba32 100644 --- a/receiver/prometheusreceiver/internal/transaction.go +++ b/receiver/prometheusreceiver/internal/transaction.go @@ -303,6 +303,15 @@ func (t *transaction) AppendCTZeroSample(_ storage.SeriesRef, _ labels.Labels, _ return 0, nil } +func (t *transaction) AppendHistogramCTZeroSample(_ storage.SeriesRef, _ labels.Labels, _, _ int64, _ *histogram.Histogram, _ *histogram.FloatHistogram) (storage.SeriesRef, error) { + // TODO: implement this func + return 0, nil +} + +func (t *transaction) SetOptions(opts *storage.AppendOptions) { + // TODO: implement this func +} + func (t *transaction) getSeriesRef(ls labels.Labels, mtype pmetric.MetricType) uint64 { var hash uint64 hash, t.bufBytes = getSeriesRef(t.bufBytes, ls, mtype)