I try to do box plot using viz. But I can see the "trace 0" data graph in box plot. ( I don't have any data called "trace 0") This is my code, <row> <panel> <viz type="splunk_plotly_collec...
See more...
I try to do box plot using viz. But I can see the "trace 0" data graph in box plot. ( I don't have any data called "trace 0") This is my code, <row> <panel> <viz type="splunk_plotly_collection_viz.boxplot"> <search> <query> ..... | eval total_time=case(time<= 8, "8", time<= 9, "8~9", time<= 10, "9~10", time<= 11, "10~11", time<= 15, "11~15", time<= 20, "15~20") | table total_time init_dt </query> </search> <option name="drilldown">all</option> <option name="refresh.display">progressbar</option> <option name="trellis.enabled">0</option> </viz> </panel> </row> and this is the current state of my graph. How could I delete "trace 0" in the graph?