Hello dear splunk community, how can I set the colors of the bar chart in splunk dashboard studio? Example code index=digiks sourcetype=modeas_nexonic earliest= "@d+390m-7d" latest= "@d+1830m"
SUB_DIB="4711" OR SUB_DIB="0815"
| dedup RECV_TIME
| chart count(RECV_TIME) over shift day by SUB_DIB
| rename "4711" AS A_CHART, "0815" AS B_CHART The bar 4711 should be displayed in red color The bar 0815 shall be displayed in green color Thanks in advance!
... View more
Hello scelikok, Dankr for the quick reply! Unfortunately it does not work. The values are displayed per hour so 10:00 = 250 pieces 11:00 = 200 pieces 12:00 = 150 pieces. But this is how it should be 10:00 = 250 pieces 11:00 = 450 pieces 12:00 = 600 pieces
... View more
How can I display a value cumulatively every hour? For example 10:00 = 250 pieces, 11:00 = 200 pieces, 12:00 = 150 pieces. The value should be displayed as follows 10:00 = 250 pieces 11:00 = 450 pieces 12:00 = 600 pieces Which search command should I enter here? Thanks in advance!
... View more