diff options
| author | Paul Buetow <paul@buetow.org> | 2025-12-30 23:51:34 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-12-30 23:51:34 +0200 |
| commit | 448474ece746bfbd484fe80fa2c2742fc5d45c99 (patch) | |
| tree | 1de37b7b74da32917890da1180ce7c4f402c6aca | |
| parent | 097767ed8eb3b7193c0737e2a99c23ff89074769 (diff) | |
Enable Prometheus Remote Write receiver for historic data ingestion
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 <noreply@anthropic.com>
| -rw-r--r-- | f3s/prometheus/persistence-values.yaml | 5 |
1 files 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 |
