Splunk Search

1 graph for two searches

pborucki
New Member

Hello,

I am new to Splunk and I ma trying to analyze my logfile and create graph for two avg fields by each present different values, here is fragment of my file:

3/21/12
10:03:49.335 AM     

Mar 21 10:03:49.335 [RATE] cur=209.9 lo=209.9 hi=210.0 avg=209.9

3/21/12
10:03:19.335 AM     

Mar 21 10:03:19.335 [RATE] CPU=61658.825: cur=80 avg=81

I need to have graph which present avg value from both lines separately over time.
My problem is that splunk count average value from both avg fields in both lines.
How can I separate them?

thank you

Tags (1)
0 Karma

sowings
Splunk Employee
Splunk Employee

I'd use eval to rename the fields, on a conditional basis, and then plot both values simultaneously:

search RATE
  | eval rate_avg=if(isnotnull(lo), avg, null)
  | eval cpu_avg=if(isnotnull(CPU), avg, null)
  | timechart avg(rate_avg) AS rate_avg, avg(cpu_avg) AS cpu_avg

There'll be two lines on the chart, one labeled rate_avg, and the other as cpu_avg.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

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

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...