Hi-
I have a pie chart in my dashboard and I want to put specific color for a specific webservers status codes (202, 404, 502, etc).I tried the below xml parameters but the color is still randomly changing. This is the input that I want for 200 = green, 302=blue , 301 = blue , 404 = yellow and 502 = red. I also tried several suggestions found on this Splunk answers forum but to no avail.Please advise.
searchString>sourcetyphart>
<searchString>sourcetype="access_combined_wcookie" host=*crdd* uri=/mpd* | stats count by status</searchString>
<title>Status Code Summary (All Web Requests) - Last 60 min</title>
<earliestTime>-60m</earliestTime>
<latestTime>@m</latestTime>
<option name="charting.chart">pie</option>
<option name="count">50</option>
<option name="displayRowNumbers">true</option>
<option name="charting.chart.rangeValues">[202,502,302,404]</option>
<option name="charting.seriesColors">[0xbf3030,0x84e900,0x84e900,0xffe800]</option>
<option name="charting.chart.sliceCollapsingThreshold">0</option>
</chart>
... View more