Splunk Search

help on single panel with trend

jip31
Motivator

hello

 

I need to display a single panel with trend but it doesnt works

does it miss something?

 

<dashboard>
  <label>VIZ</label>
  <row>
    <panel>
      <single>
        <search>
          <query>`CPU` 
| fields process_cpu_used_percent host 
| search host=06999   
| stats count as "Number of peaks" by host</query>
          <earliest>-7d@h</earliest>
          <latest>now</latest>
        </search>
        <option name="colorMode">block</option>
        <option name="drilldown">none</option>
        <option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
        <option name="refresh.display">progressbar</option>
        <option name="trellis.enabled">1</option>
        <option name="useColors">1</option>
         <option name="showSparkline">1</option>
        <option name="showTrendIndicator">1</option>
          <option name="trendInterval">-1h</option>
        <option name="underLabel">Compared to an hour before</option>
      </single>
    </panel>
  </row>
</dashboard>

 

 

Thanks

Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @jip31,

to display trend in single panels you cannot use stats command, but you need a search that gives you two values in two different times, in addition you cannot aggregate values using the BY clause, in other words, your search should be something like this:

`CPU` 
| fields process_cpu_used_percent host 
| search host=06999   
| timechart bins=2 count as "Number of peaks" 

 Ciao.

Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @jip31,

to display trend in single panels you cannot use stats command, but you need a search that gives you two values in two different times, in addition you cannot aggregate values using the BY clause, in other words, your search should be something like this:

`CPU` 
| fields process_cpu_used_percent host 
| search host=06999   
| timechart bins=2 count as "Number of peaks" 

 Ciao.

Giuseppe

0 Karma

jip31
Motivator

Hi Thanks for your answer

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @jip31,

good for you, see next time!

Ciao and happy splunking.

Giuseppe

P.S.: Karma Points are appreciated 😉

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 ...