Skip to content

Instantly share code, notes, and snippets.

@estib
Created October 5, 2016 18:04
Show Gist options
  • Save estib/7191bd9bd43fb5423fdfb91980eab142 to your computer and use it in GitHub Desktop.
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.
{
"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