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!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...