Try like this
your current search giving fields Host and Has* fields
| replace "TRUE" with 1 in Has* | addtotals label="NumTRUE" | replace "1" with "TRUE" in Has*
| replace "FALSE" with 1 in Has* | addtotals label="NumFalse" | replace "1" with "False" in Has*
Alternatively
your current search giving fields Host and Has* fields | untable Host key value
| appendpipe [stats count by Host value | replace "TRUE" with "NumTRUE" "FALSE" with "NumFalse" in value | rename value as key | rename count as value]
| xyseries Host key value | table Host Has* NumTRUE NumFALSE
... View more