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
SplunkTrust
SplunkTrust

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)

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...

We’ve Got Education Validation!

Are you feeling it? All the career-boosting benefits of up-skilling with Splunk? It’s not just a feeling, it's ...