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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...