Dashboards & Visualizations

How can I structure the search to sum up the values into one single value for plotting?

splunk_question
Explorer

I have some data:

alt text

Which is retrieved by the following search:

index="INDEX"
| timechart span=7d AVG(FIELD1) by FIELD2
| streamstats AVG window=75
| table _time AVG*

How can I structure that search to sum up the values into one single value for plotting?

Thanks!

0 Karma
1 Solution

splunk_question
Explorer

Solved!

index="INDEX" 
| timechart span=12h sum(FIELD1) as FIELD1 by
| streamstats window=30 AVG
| table _time AVG*

It's not a very pretty answer (forces it to calculate each individual point by span=12h) but it gets the job done.

View solution in original post

0 Karma

splunk_question
Explorer

Solved!

index="INDEX" 
| timechart span=12h sum(FIELD1) as FIELD1 by
| streamstats window=30 AVG
| table _time AVG*

It's not a very pretty answer (forces it to calculate each individual point by span=12h) but it gets the job done.

0 Karma

somesoni2
Revered Legend

Give this a try

index="INDEX"
 | timechart span=7d AVG(FIELD1) as AVG
 | streamstats AVG window=75
 | table _time AVG*

splunk_question
Explorer

Edit: This worked, I just had to change the span down to only take into account one data collection time, otherwise it would sum for the week.

0 Karma

splunk_question
Explorer

I think I'm trying to change the way I'm looking at the data. Instead of summing the FIELD2's FIELD1 values by date, I'm modifying the base search and summing the FIELD1 by Date.

This search results in an average across all FIELD2 values, somehow.

0 Karma

somesoni2
Revered Legend

Give this a try

 index="INDEX"
| bucket span=7d _time 
| stats avg(FIELD1) as AVG by _time FIELD2
| stats avg(AVG) as AVG by _time
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 ...