The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
grafana/dashboards.js

56 lines
1.3 KiB

13 years ago
var dashboards =
{
title: "Infinite Monkey Dashboard",
rows: {
row1: {
height: "200px",
panels: {
"Monkey Productivity": {
type : "histogram",
span : 8,
show : ['lines','points'],
query : "*",
label : "Monkey lines of shakespeare",
color : "#7BA4AF"
},
"Works of Shakespeare": {
type : "pieterms",
legend : true,
field : "play_name",
span : 4,
size : 10,
query : "*"
}
}
},
row2: {
height: "300px",
13 years ago
panels: {
"Royal Decrees": {
type : "stackedquery",
span : 3,
13 years ago
donut : true,
queries : ['king','queen','duke'],
},
"Remote Monkey Activity": {
type : "map",
span : 6,
size : 20,
field : 'country',
query : '',
13 years ago
colors : ['#B07737','#85004B','#7BA4AF'],
},
"Main Characters": {
type : "pieterms",
donut : true,
legend : true,
field : "country",
span : 3,
13 years ago
size : 5,
query : "*",
}
}
}
}
};