Dashboards & Visualizations

How to create a stacked bar graph with 2 y axis attributes?

nyasharashad59
Explorer

Good day

I have two attributes for my graph which are over time. subscriber_ap (which should read the value on y axis) and subscriber_fup which is color.

I have managed to create the graph with subscriber_fup (color) but my subscriber_ap which is supposed to be a stacked graph it is not showing. if you find attached screenshot, when subscriber_ap = 0 it should count 4 bars on the y axis, if subscriber_fup is 200 it should be read, which means at a particular time we should have 4 red bars, if subscriber_ap=100 =3 bars on Y axis, when subscriber_fup is zero it should paint green hence have 3 green bars at that particular timealt text

  <chart>
    <search>
      <query>index=sandvine sourcetype=sql subscriber_name="$subscriberid$"
      | eval 4 = if(subscriber_ap=200,subscriber_ap,0)
      | eval 3 = if(subscriber_ap=150,subscriber_ap,0)
      | eval 2 = if(subscriber_ap=100,subscriber_ap,0)
      | eval 1 = if(subscriber_ap=0,subscriber_ap,0)
      | eval green = if( subscriber_fup=0,subscriber_fup,0)
      | eval yellow = if(subscriber_fup=100,subscriber_fup,0)
      | eval orange = if(subscriber_fup=150,subscriber_fup,0)
      | eval red = if(subscriber_fup=200,subscriber_fup,0)
      | timechart span=30m values(green) as "Green" values(yellow) as "Yellow" values(orange) as "Orange" values(red) as "Red"
0 Karma
1 Solution

DalJeanis
Legend

try this

 index=sandvine sourcetype=sql subscriber_name="$subscriberid$"
 | bin _time span=1h
 | stats max(subscriber_ap) as SAP max(subscriber_fup) as FUP 
 | eval chartbars=round(SAP/50)
 | eval chartcolor=case(FUP>=150,"orange", FUP>=100,"yellow", true(),"green")
 | timechart span=1h max(chartbars) by chartcolor

View solution in original post

0 Karma

DalJeanis
Legend

try this

 index=sandvine sourcetype=sql subscriber_name="$subscriberid$"
 | bin _time span=1h
 | stats max(subscriber_ap) as SAP max(subscriber_fup) as FUP 
 | eval chartbars=round(SAP/50)
 | eval chartcolor=case(FUP>=150,"orange", FUP>=100,"yellow", true(),"green")
 | timechart span=1h max(chartbars) by chartcolor
0 Karma
Get Updates on the Splunk Community!

Index This | What did the zero say to the eight?

June 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this month’s ...

Splunk Observability Cloud's AI Assistant in Action Series: Onboarding New Hires & ...

This is the fifth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Now Playing: Splunk Education Summer Learning Premieres

It’s premiere season, and Splunk Education is rolling out new releases you won’t want to miss. Whether you’re ...