Splunk Search

Populating Timechart Single Values with Dashboard Base Search

jasonhallDFIR
New Member

I have a dashboard with a base search, three Single Values use the base search, but will only populate using stats, I would like to utilize timechart for the three Single Values to show trending data.

Each Single Value also needs to filter data so that SV1 shows all eventtypes, SV2 shows eventtype1, and SV3 shows eventtype2.

<dashboard>
  <label>Single Value Dashboard</label>
  <search id="base">
    <query>index=main sourcetype=source</query>
  </search>
  <row>
    <panel>
      <single>
        <title>All Events</title>
        <search>
          <query>| timechart count</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </single>
      <single>
        <title>Eventtype 1</title>
        <search base="base">
          <query>| search eventtype=eventtype1 | timechart count by eventtype</query>
        </search>
      </single>
      <single>
        <title>Eventtype 2</title>
        <search base="base">
          <query>| search eventtype=eventtype2 | timechart count by eventtype</query>
        </search>
      </single>
    </panel>
  </row>
</dashboard>

I'm confused as using the SPL in Search & Reporting does return the desired result

index=main sourcetype=source | search eventtype=eventtype1 | timechart count by eventtype
0 Karma
1 Solution

somesoni2
Revered Legend

Try this

<dashboard>
   <label>Single Value Dashboard</label>
   <search id="base">
     <query>index=main sourcetype=source | timechart count by eventtype  </query>
           <earliest>-24h@h</earliest>
           <latest>now</latest>
   </search>
   <row>
     <panel>
       <single>
         <title>All Events</title>
         <search>
           <query>| addtotals | timechart sum(Total) as count</query>
         </search>
         <option name="drilldown">none</option>
       </single>
       <single>
         <title>Eventtype 1</title>
         <search base="base">
           <query>| table _time eventtype1</query>
         </search>
       </single>
       <single>
         <title>Eventtype 2</title>
         <search base="base">
           <query>| table _time eventtype2</query>
         </search>
       </single>
     </panel>
   </row>
 </dashboard>

View solution in original post

0 Karma

somesoni2
Revered Legend

Try this

<dashboard>
   <label>Single Value Dashboard</label>
   <search id="base">
     <query>index=main sourcetype=source | timechart count by eventtype  </query>
           <earliest>-24h@h</earliest>
           <latest>now</latest>
   </search>
   <row>
     <panel>
       <single>
         <title>All Events</title>
         <search>
           <query>| addtotals | timechart sum(Total) as count</query>
         </search>
         <option name="drilldown">none</option>
       </single>
       <single>
         <title>Eventtype 1</title>
         <search base="base">
           <query>| table _time eventtype1</query>
         </search>
       </single>
       <single>
         <title>Eventtype 2</title>
         <search base="base">
           <query>| table _time eventtype2</query>
         </search>
       </single>
     </panel>
   </row>
 </dashboard>
0 Karma

jasonhallDFIR
New Member

Thank you very much, this worked as I needed. I hadn't thought to use table.

0 Karma
Get Updates on the Splunk Community!

Data Management Digest – December 2025

Welcome to the December edition of Data Management Digest! As we continue our journey of data innovation, the ...

Index This | What is broken 80% of the time by February?

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

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...