Splunk Search

Bar chart with single bar does not display

simpkins1958
Contributor

We have horizontal bar charts on our dashboards and when SPL is filtered down to single bar the bar is not displayed.

Is this a know Splunk bug. We are using 7.0alt text

0 Karma

simpkins1958
Contributor

If remove:

    <option name="charting.axisTitleX.visibility">collapsed</option>

then bar is display otherwise it is not.

alt text

0 Karma

niketn
Legend

@simpkins1958, please add your dashboard code.
I think issue could be
1) Either at main bar chart drilldown token (so you should display tokens you set in the Panel <title> OR
2) Second chart should have same by clause as first bar chart.

You can try out the following run anywhere dashboard (base on Splunk's _internal index) to understand

<dashboard>
  <label>Bar chart drilldown.</label>
  <row>
    <panel>
      <title>Bar chart Main Panel</title>
      <chart>
        <search>
          <query>index=_internal sourcetype=splunkd log_level!=INFO
|  stats count by component 
|  sort - count
|  head 5</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="charting.chart">bar</option>
        <option name="charting.drilldown">all</option>
        <drilldown>
          <set token="tokClickedName">$click.name$</set>
          <set token="tokClickedvalue">$click.value$</set>
        </drilldown>
      </chart>
    </panel>
  </row>
  <row>
    <panel>
      <title>Drilldown Bar chart - ( $tokClickedName$=$tokClickedvalue$ )</title>
      <chart>
        <search>
          <query>index=_internal sourcetype=splunkd log_level!=INFO $tokClickedName$=$tokClickedvalue$
  | stats count by $tokClickedName$        
          </query>
        </search>
        <option name="charting.chart">bar</option>
        <option name="charting.drilldown">none</option>        
      </chart>
    </panel>
  </row>
</dashboard>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

simpkins1958
Contributor

It is a single bar chart having trouble with. Not one bar chart and drilling down to second bar chart.

Your test code works fine.

Here is some of my XML for the chart that is not working. If I remove X visibility the bar is displayed fine.

        <option name="charting.axisTitleX.visibility">collapsed</option>
        <option name="charting.axisTitleY.visibility">collapsed</option>
        <option name="charting.chart">bar</option>
        <option name="charting.drilldown">none</option>
        <option name="charting.legend.placement">none</option>
0 Karma

niketn
Legend

@simpkins1958 , can you give the query for second Bar Chart with single bar? I tried with the properties you have provided and it works fine.

  <row>
    <panel>
      <title>Single Value Bar chart</title>
      <chart>
        <search>
          <query>index=_internal sourcetype=splunkd log_level!=INFO
|  stats count by component 
|  sort - count
|  head 1
|  eval component="58-6D-8F-23-6A-31 - Gocougs"</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="charting.chart">bar</option>
        <option name="charting.drilldown">none</option>
         <option name="charting.axisTitleX.visibility">collapsed</option>
         <option name="charting.axisTitleY.visibility">collapsed</option>
         <option name="charting.chart">bar</option>
         <option name="charting.drilldown">none</option>
         <option name="charting.legend.placement">none</option>
      </chart>
    </panel>
  </row>

Just a thought, if your Bar chart is going to be single series, you can also check out Marker or Filler Gauge with rangemap to make more sense out of data.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

niketn
Legend

@simpkins1958, for me the Chart behavior is as expected. So please provide Second Bar chart search query, if your issue is still not resolved.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...