Monitoring Splunk

RAW Time series for a specific field

artrune
Path Finder

Right now I have a query or a search as follows: index=main earliest=" + earliestDate + " latest=" + latestDate + " |bucket _time span=" + bucketSize + " | stats avg(" + attribute + ") as Value by _time
However I would like to be able to get the RAW data without applying any buckets or averages (So what I basically want is to retrieve the time series data of a specific field. value and timestamp pairs)
I have tried modifying that query a bit but haven't been able to get something working.

Tags (1)
0 Karma
1 Solution

artrune
Path Finder

For anyone wondering this is how I got the desired result:

   | table _time field

View solution in original post

0 Karma

artrune
Path Finder

For anyone wondering this is how I got the desired result:

   | table _time field
0 Karma

koshyk
Super Champion

I don't think your SPL is correct. Are you trying to put dynamic values into your main search?

Try something like below

index=main earliest=-24h 
|timechart span=1h count by SomeFieldYouRequire

Please replace the field name accordingly
Or if you give sample data and what output you need, we can write for you

0 Karma

artrune
Path Finder

Lets say I have a field name AvailableMemory. I want to get every value of that field with its corresponding timestamp within a timespan (using earlist and latest)
Does that make more sense now?

0 Karma

koshyk
Super Champion

agree, but the extraction depends on your data. So would be better if you put some sample data

meantime, please try

index=main earliest=-24h latest=-1h
 |timechart span=1h count by AvailableMemory
0 Karma

artrune
Path Finder

I did try that, but it returns the fields like this:
https://imgur.com/rRHQ56f
but i want it to return like this:
https://imgur.com/5UWSToM
the problem with tthe second one is that its in time buckets and with average, i want the raw values

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...