Hello,
My chart for some reason, isn't displaying the value "high" and it has the high count at the bottom of the graph when I want the count of the other types under the columns.
Here is my code:
index=nessus
| stats count(eval(risk_factor ="high")) as high count(eval(risk_factor ="medium")) as medium count(eval(risk_factor ="critical")) as critical count(eval(risk_factor ="low")) as low count(eval(risk_factor ="none")) as none
Try setting the visualization barchart format-
format - general - show data values - on
Why not just do this:
index=nessus | stats count BY risk_factor
Not the answer to the question he asked, but a great answer nonetheless.