We are using the 1-click-installed variant of the kubernetes monitoring stack. A few days ago Grafana stopped working, with the web panel reporting “an internal server error”:
{ “message”: “An error occurred within the plugin”, “messageId”: “plugin.downstreamError”, “statusCode”: 500, “traceID”: “” }
Has anyone encountered (and solved? :)) this issue? Kind regards
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
This error indicates that something has gone wrong internally with Grafana, typically due to a plugin issue or a configuration problem.
Use the following command to view the logs of the Grafana pod:
Replace
<grafana-pod-name>
with the actual name of your Grafana pod. Check for any error messages or stack traces that could give more insight into what’s causing the issue.Look for any plugins that might be known to cause issues or have recent updates that could have introduced bugs.
If any plugins are outdated or known to cause problems, consider updating or removing them:
Or remove a specific plugin:
After updating or removing plugins, restart the Grafana pod to apply changes:
Kubernetes will automatically recreate the pod with the updated configuration.
Regards