fix(monitoring): pin Grafana to 11.6.11 + fix prometheus datasource URL - #146
Open
0xbuidler wants to merge 2 commits into
Open
fix(monitoring): pin Grafana to 11.6.11 + fix prometheus datasource URL#1460xbuidler wants to merge 2 commits into
0xbuidler wants to merge 2 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix two monitoring stack issues affecting Grafana dashboards:
11.6.11to ensure compatibility with newer frontend plugins such as the Infinity datasource.prometheus-server.Changes
grafana.image.tagto11.6.11inmonitoring-values.yaml.j2.http://prometheustohttp://prometheus-serverWhy
The monitoring deployment was using Grafana
11.6.0together with newer Grafana plugins. This could leave datasources successfully provisioned and healthy on the backend while dashboard variables failed to resolve them correctly in the frontend.Additionally, the Grafana Prometheus datasource was configured to query:
while the monitoring chart actually creates the Prometheus server service as:
This caused Grafana queries to fail with DNS errors such as:
Using
prometheus-servermakes the datasource match the service already created by the monitoring chart, without renaming Kubernetes resources or affecting other consumers.Testing
Redeployed the monitoring stack with:
Verified:
11.6.11.prometheus-serversuccessfully.Scope
This keeps the changes limited to the generated monitoring Helm values and does not rename existing Kubernetes services or alter the Prometheus deployment topology.