Splunk Search

Timechart not coming up instead a table is coming up for it

mayank101
New Member

Timechart not coming up instead a table is coming up for it.Can anyone tell me what's wrong with the query.I want a timechart to be displayed instead of the table .

    <label>Filter Entity (once results loaded now define your enity to filter)</label>
    <default>*</default>
    <initialValue>*</initialValue>
  </input>
  <table>
    <search>
      <query>index="****" 
        publisher="***" entity="$select_entityprefix$*boot*" 
         |rex field=entity "_(?!.*_)(?<host>.*)"

        |search resource=$select_resource$
        |search entity="*$select_entity2$*"
        |table _time  entity resource  description
        |timechart count by entity</query>
      <earliest>$time_tok.earliest$</earliest>
      <latest>$time_tok.latest$</latest>
    </search>
    <option name="count">15</option>
    <option name="dataOverlayMode">none</option>
    <option name="drilldown">cell</option>
    <option name="rowNumbers">false</option>
    <option name="wrap">true</option>
  </table>
Tags (1)
0 Karma
1 Solution

vnravikumar
Champion

hi

Use chart instead of table tag

<chart id="test">
         <title>Test Image background</title>
         <search>
           <query>index=_internal | timechart  count</query>
           <earliest>-24h@h</earliest>
           <latest>now</latest>
         </search>
         <option name="charting.chart">line</option>
         <option name="charting.drilldown">none</option>
       </chart>

View solution in original post

0 Karma

vnravikumar
Champion

hi

Use chart instead of table tag

<chart id="test">
         <title>Test Image background</title>
         <search>
           <query>index=_internal | timechart  count</query>
           <earliest>-24h@h</earliest>
           <latest>now</latest>
         </search>
         <option name="charting.chart">line</option>
         <option name="charting.drilldown">none</option>
       </chart>
0 Karma

mayank101
New Member

Thank you so much for your help vnravikumar.It worked.

0 Karma
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...