Skip to content

Instantly share code, notes, and snippets.

@jungopro
Created September 10, 2018 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jungopro/25db4d935872fd190769f12822d6c41e to your computer and use it in GitHub Desktop.
Save jungopro/25db4d935872fd190769f12822d6c41e to your computer and use it in GitHub Desktop.
Sample Customised Grafana Dashboard
{
"__inputs": [
{
"name": "DS_DEV-PROMETHEUS",
"label": "Prometheus",
"description": "",
"type": "datasource",
"pluginId": "prometheus",
"pluginName": "Prometheus"
}
],
...
"rows": [
{
"collapse": false,
"editable": true,
"height": "200px",
"panels": [
{
"aliasColors": {},
"bars": false,
"datasource": "${DS_DEV-PROMETHEUS}",
"..."
Should be changed to:
{
"__inputs": [
{
"name": "DS_PROMETHEUS",
"label": "Prometheus",
"description": "",
"type": "datasource",
"pluginId": "prometheus",
"pluginName": "Prometheus"
}
],
...
"rows": [
{
"collapse": false,
"editable": true,
"height": "200px",
"panels": [
{
"aliasColors": {},
"bars": false,
"datasource": "${DS_PROMETHEUS}",
"..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment