Skip to content

Instantly share code, notes, and snippets.

@thijsc
Last active June 28, 2023 09:29
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 thijsc/0bec5f37e0c4492973dc530fbb418417 to your computer and use it in GitHub Desktop.
Save thijsc/0bec5f37e0c4492973dc530fbb418417 to your computer and use it in GitHub Desktop.
Custom dashboard config for apdex score and counts
{
"title": "Apdex",
"description": "",
"visuals": [
{
"title": "Apdex",
"line_label": "%namespace%",
"display": "LINE",
"format": "number",
"draw_null_as_zero": false,
"metrics": [
{
"name": "apdex",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "namespace",
"value": "*"
}
]
}
],
"type": "timeseries"
},
{
"title": "Counts",
"line_label": "%namespace% - %standard%",
"display": "AREA",
"format": "throughput",
"draw_null_as_zero": true,
"metrics": [
{
"name": "apdex_counts",
"fields": [
{
"field": "COUNTER"
}
],
"tags": [
{
"key": "namespace",
"value": "*"
},
{
"key": "standard",
"value": "*"
}
]
}
],
"type": "timeseries"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment