Deployment Architecture

Count filed value variation pet host per day

Ed_Alias
Path Finder

Hello,

I need to report antivirus daily update on servers,

i have an hourly logging of each "Endpoint" with version number.

How can i count field value variation for each day and each "Endpoint" ?

Tags (1)
0 Karma

sduchene_splunk
Splunk Employee
Splunk Employee

It would be great if you could provide an example,
if you want the value VARIATION during the day, maybe you want the first and last of each day and calculate a variation. this would be

xxx |bucket _time span=1d|stats first(version) as first, last(version) as last by _time, endpoint|eval variation=last-first

OR do a simple delta between the last value of each day :

xx|bucket _time span=1d|stats last(version) as last by _time, endpoint|delta last as variation

Also for variation, streamstats could be your friend. And lastly : check delta blogpost
Does it help ?

renjith_nair
Legend

In general, you can do this by

<your basic search> |bucket _time span=1d |stats count by version_number,endpoint,_time

This will give you the count of different version numbers per day per host

If you want to do it in any specific way, please provide more details (sample events,fields etc)

---
What goes around comes around. If it helps, hit it with Karma 🙂
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 ...