Splunk Search

Count events in summary index

oshirnin
Path Finder

Hello, everybody!

Does anybody can help with such an easy problem as counting events in summary index?

I have a summary index populated with something like SS:

 

| tstats prestats=true summariesonly=false
    min(CPU.CPU_Performance.cpu_load_percent),
    avg(CPU.CPU_Performance.cpu_load_percent), 
    max(CPU.CPU_Performance.cpu_load_percent)
  from datamodel=MODEL where nodename=CPU.CPU_Performance
  by host, CPU.CPU_Performance.cpu_instance 
| sistats
    min(CPU.CPU_Performance.cpu_load_percent),     
    avg(CPU.CPU_Performance.cpu_load_percent), 
    max(CPU.CPU_Performance.cpu_load_percent)
  by host, CPU.CPU_Performance.cpu_instance 
| addinfo 
| eval _time=info_min_time, host=upper(host) 
| fields - info_sid, info_search_time, info_min_time, info_max_time
| collect index=my_summary

 

My SS is scheduled to run once an hour, so I every hour get 1 event for each orig_host in summary index.

Now I want to check, if all the required events are here in summary index. I expect to get count=24 events for each orig_host in summary index for each day. When I try the search:

 

index=my_summary | stats count by orig_host

 

I get all the psrsvd_ct_ values summarized giving me not what I expected. How should I change my search to count events in summary index?

Labels (1)
0 Karma

oshirnin
Path Finder

Hello, can anyone help with this?

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index=my_summary 
| bin span=1d _time
| stats count by _time orig_host
0 Karma

oshirnin
Path Finder

@ITWhisperer this doesn't work, it takes psrsvd_ct_ values and sum these. Please, check attached

splunk01.PNG

splunk02.PNG

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

It looks like orig_host might be a multivalue field in your summary index, with your host repeated 3.5 times. (3.5 * 24 = 84). Please can you check?

0 Karma

oshirnin
Path Finder

Sure my orig_host is NOT MV

splunk03.PNG

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

How about _time

| eval b=mvcount(_time)
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...