Splunk Search

How to Sum of count of data received twice per day for last 30 days.

vdalvi
Explorer

Hi,

Below is my search query:

index=abc host=xyz source=abcdef
| rename size AS RootObject.size topicName AS RootObject.topicName
| fields "_time" "host" "source" "sourcetype" "RootObject.size" "RootObject.topicName"
| eval "RootObject.topicName"='RootObject.topicName', _time='_time'
| timechart dedup_splitvals=t limit=100 useother=t sum(RootObject.size) AS "Sum of size" span=1d by RootObject.topicName usenull=f
| sort limit=0 _time
| fields _time properties.dta properties.mta


Search Result:

_time                           properties.dta    properties.mta

2020-08-07 00:00  | 2149528  | 25167867
2020-08-07 04:00  | 151400     | 1522424
2020-08-08 00:00  | 2299209  | 24934163
2020-08-08 04:00  |                      | 1769140

As seen above I get data at 12.00 am and 4.00 am; How can i combine i.e (sum) single days data in just one row? Pleas

Tags (1)
0 Karma
1 Solution

to4kawa
Ultra Champion

add

| eval  date=strftime(_time,"%F")
| stats sum(*) as * by date

View solution in original post

to4kawa
Ultra Champion

add

| eval  date=strftime(_time,"%F")
| stats sum(*) as * by date

vdalvi
Explorer

@to4kawa thank you!! exactly what I was looking for 🙂

0 Karma
Get Updates on the Splunk Community!

Fun with Regular Expression - multiples of nine

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

[Live Demo] Watch SOC transformation in action with the reimagined Splunk Enterprise ...

Overwhelmed SOC? Splunk ES Has Your Back Tool sprawl, alert fatigue, and endless context switching are making ...

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...