Splunk Search

How to change my stats sum(x) search to an hourly timechart sum(y)?

pavanae
Builder

Hi

I have the following search which displays the sum of a field, but I am trying to put a time chart in hourly which shows the sum of that particular hour.

…..My Search……| rex "value(?<amount>\d+.\d+)" | stats count by amount |stats sum(amount) as total

How to modify my search to display the hourly count?

Any help or Suggestions?

0 Karma
1 Solution

hexx
Splunk Employee
Splunk Employee

I think you just want something like:

... | rex "value(?<amount>d+.d+)" | timechart span=1h sum(amount) AS "Hourly amount"

Alternatively, you could also use per_hour():

... | rex "value(?<amount>d+.d+)" | timechart span=1h per_hour(amount) AS "Hourly amount"

Both of these searches should return one result per hour reflecting the sum of the values of the "amount" field for all events within a particular hour.

View solution in original post

somesoni2
Revered Legend

Based on your search, it looks like you're extracting field amount, finding unique values of the field amount (first stats) and then getting total of unique amount values. If this is correct and you want to get total of unique amount values based on the hour, try this

 …..My Search……| rex "value(?<amount>\d+.\d+)" | bucket span=1h _time | stats count by _time, amount |stats sum(amount) as total by
0 Karma

rphillips_splk
Splunk Employee
Splunk Employee

index=_internal | timechart span=1h sum(count)

in your case :
…..My Search……| rex "value(?d+.d+)" | timechart span=1h sum(amount)

0 Karma

hexx
Splunk Employee
Splunk Employee

I think you just want something like:

... | rex "value(?<amount>d+.d+)" | timechart span=1h sum(amount) AS "Hourly amount"

Alternatively, you could also use per_hour():

... | rex "value(?<amount>d+.d+)" | timechart span=1h per_hour(amount) AS "Hourly amount"

Both of these searches should return one result per hour reflecting the sum of the values of the "amount" field for all events within a particular hour.

masonmorales
Influencer

Try something like:

…..My Search……| rex "value(?<amount>d+.d+)" | bin _time span=1h | timechart sum(amount) as total span=1h

or

…..My Search……| rex "value(?<amount>d+.d+)" | bin _time span=1h | stats count by amount, _time | timechart sum(amount) as total span=1h
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...