Created
October 5, 2016 18:04
-
-
Save estib/7191bd9bd43fb5423fdfb91980eab142 to your computer and use it in GitHub Desktop.
JSON for a query value widget that will count the number of agents reporting and also provide coloring options.
This file contains 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
{ | |
"viz": "query_value", | |
"requests": [ | |
{ | |
"q": "count_not_null(avg:system.cpu.system{*} by {host})", | |
"conditional_formats": [ | |
{ | |
"comparator": "<=", | |
"value": "1", | |
"palette": "white_on_red" | |
}, | |
{ | |
"comparator": "<=", | |
"value": "2", | |
"palette": "white_on_yellow" | |
}, | |
{ | |
"comparator": ">", | |
"value": "2", | |
"palette": "white_on_green" | |
} | |
], | |
"aggregator": "last" | |
} | |
], | |
"precision": "0" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment