Reporting

VIEW n events pear second

gbriones
Engager

I need  to show first 40 events pear seconds in the range 15 minutes.

 

Labels (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
... | sort _time
| eval seconds=floor(_time)
| streamstats count by seconds
| where count <= 40

View solution in original post

0 Karma

gbriones
Engager

For example, if 100 events fell in one second, I need to only take the first 40 and continue with the next second

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Assuming your search is over a 15 minute period, round time to seconds, and count events by second, then only keep the first 40 per second

... | eval seconds=round(_time,0)
| streamstats count by seconds
| where count <= 40
0 Karma

gbriones
Engager

Thanks for respond but  I see to look more 40 events pear second:

| dedup id | eval seconds=round(_time,0)
| streamstats count by seconds | where count <= 40 | timechart span=1s count

gbriones_0-1618416601195.png

 

Tags (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Does sorting by time first help?

... | sort _time
| eval seconds=round(_time,0)
| streamstats count by seconds
| where count <= 40
0 Karma

gbriones
Engager

keeps showing results greater than 40 😞

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
... | sort _time
| eval seconds=floor(_time)
| streamstats count by seconds
| where count <= 40
0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...