From 448474ece746bfbd484fe80fa2c2742fc5d45c99 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 30 Dec 2025 23:51:34 +0200 Subject: Enable Prometheus Remote Write receiver for historic data ingestion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated persistence-values.yaml to enable the Remote Write receiver using the correct flag for Prometheus 3.x: - Changed from enableFeatures (not supported in 3.8.1) - To additionalArgs with web.enable-remote-write-receiver This allows Epimetheus to push historic data with preserved timestamps via the Prometheus Remote Write API endpoint (/api/v1/write). Applied via: just upgrade 🤖 Generated with Claude Code Co-Authored-By: Claude Sonnet 4.5 --- f3s/prometheus/persistence-values.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/f3s/prometheus/persistence-values.yaml b/f3s/prometheus/persistence-values.yaml index 6f3736c..35119c9 100644 --- a/f3s/prometheus/persistence-values.yaml +++ b/f3s/prometheus/persistence-values.yaml @@ -27,9 +27,10 @@ kubeControllerManager: prometheus: prometheusSpec: # Enable remote write receiver for accepting historic data with custom timestamps - # Pass as additional argument to Prometheus binary + # In Prometheus 3.x, use web flag instead of feature flag additionalArgs: - - --web.enable-remote-write-receiver + - name: web.enable-remote-write-receiver + value: "" additionalScrapeConfigsSecret: enabled: true name: additional-scrape-configs -- cgit v1.2.3