Splunk Search

How to sum two timecharts in another one.

kryzew
Explorer

Hello,

I tired to sum two timecharts in another one, using tokens.

It's easy to sum counted value using stats, but I have problem with timecharts, is there any way to do this?

 

 

<form>
  <label>Single Value Token</label>
  <fieldset submitButton="false">
    <input type="time" token="tokTime" searchWhenChanged="true">
      <label></label>
      <default>
        <earliest>-60m@m</earliest>
        <latest>now</latest>
      </default>
    </input>
  </fieldset>
  <row>
    <panel>
      <single>
        <title>Panel 1 (Error)</title>
        <search>
          <query>index=_internal sourcetype=splunkd log_level="Error"
 | timechart count as Error</query>
          <earliest>$tokTime.earliest$</earliest>
          <latest>$tokTime.latest$</latest>
          <done>
            <condition match="$job.resultCount$==0">
              <set token="tokError">0</set>
            </condition>
            <condition>
              <set token="tokError">$result.Error$</set>
            </condition>
          </done>
        </search>
        <option name="drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </single>
    </panel>
    <panel>
      <single>
        <title>Panel 2 (Warn)</title>
        <search>
          <done>
            <condition match="$job.resultCount$==0">
              <set token="tokWarn">0</set>
            </condition>
            <condition>
              <set token="tokWarn">$result.Warn$</set>
            </condition>
          </done>
          <query>index=_internal sourcetype=splunkd log_level="WARN"
 | timechart count as Warn</query>
          <earliest>$tokTime.earliest$</earliest>
          <latest>$tokTime.latest$</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </single>
    </panel>
    <panel>
      <single>
        <title>Panel 3 (Sum)</title>
        <search>
          <query>| makeresults
 | eval ratio=$tokError$+$tokWarn$
 |table ratio
 | timechart count as ratio</query>
          <earliest>$tokTime.earliest$</earliest>
          <latest>$tokTime.latest$</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="numberPrecision">0.000</option>
        <option name="refresh.display">progressbar</option>
      </single>
    </panel>
  </row>
</form>

 

 

Code give me value 1.000 in Panel 3 (Sum) 

Or there is another way to save trends?

 

 

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
index=_internal sourcetype=splunkd log_level="Error" OR log_level="WARN"
 | timechart count as ErrorWarn

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index=_internal sourcetype=splunkd log_level="Error" OR log_level="WARN"
 | timechart count as ErrorWarn
0 Karma
Get Updates on the Splunk Community!

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...