From 59b8bfdcd8ce529792f4f6482c72041a9ec471d2 Mon Sep 17 00:00:00 2001 From: bwplotka Date: Fri, 16 Jan 2026 11:55:09 +0000 Subject: [PATCH] refactor(scrape)[PART5c]: Switch Prometheus to use AppenderV2 for scrape Signed-off-by: bwplotka --- cmd/prometheus/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go index 06d5540380..86c12f04bc 100644 --- a/cmd/prometheus/main.go +++ b/cmd/prometheus/main.go @@ -875,7 +875,7 @@ func main() { &cfg.scrape, logger.With("component", "scrape manager"), logging.NewJSONFileLogger, - fanoutStorage, nil, // TODO(bwplotka): Switch to AppendableV2. + nil, fanoutStorage, prometheus.DefaultRegisterer, ) if err != nil {