Splunk Search

Number of distinct days an event occurs on, within the last month

fuzzy_rocks
Explorer

I would like to chart a count of how many distinct days users logged into our system within the past 7 days. When I try to count days, I keep getting 0. Assuming I have seen a total of 200 unique users, output would be something like 100 users seen 7 unique days, 90 users seen 6 unique days, and 10 users seen on 4 unique days.

Tags (2)
0 Karma
1 Solution

Narj
Path Finder

Not sure if I have the wrong end of the stick, but it's quite easy to get individual day count for events like this:

[host or other filter] AND [event-string] | dedup 1 host date_mday | stats count by host

That's obviously by host but you can change to your username extracted field to do a similar sort of thing...

This seems to work for cisco on my system... how many distinct days users made config changes..

"%SYS-5-CONFIG_I: Configured" | dedup 1 cisco_configuredby,date_mday | stats count by cisco_configuredby

Not sure I can help with the chart though. 🙂

EDIT:

"%SYS-5-CONFIG_I: Configured" | dedup 1 cisco_configuredby,date_mday | stats count AS days by cisco_configuredby | stats count by days

days count
1 17
2 11
3 5
5 2

View solution in original post

Narj
Path Finder

Not sure if I have the wrong end of the stick, but it's quite easy to get individual day count for events like this:

[host or other filter] AND [event-string] | dedup 1 host date_mday | stats count by host

That's obviously by host but you can change to your username extracted field to do a similar sort of thing...

This seems to work for cisco on my system... how many distinct days users made config changes..

"%SYS-5-CONFIG_I: Configured" | dedup 1 cisco_configuredby,date_mday | stats count by cisco_configuredby

Not sure I can help with the chart though. 🙂

EDIT:

"%SYS-5-CONFIG_I: Configured" | dedup 1 cisco_configuredby,date_mday | stats count AS days by cisco_configuredby | stats count by days

days count
1 17
2 11
3 5
5 2

fuzzy_rocks
Explorer

Thanks! I got it done with

....| stats dc(date_mday) AS UserDaysCount by UserID | chart count(UserDaysCount) by UserDaysCount

which works for less than one month. Not sure why I was getting zero answer at the start, must've had some typo.

0 Karma
Get Updates on the Splunk Community!

Developer Spotlight with Brett Adams

In our third Spotlight feature, we're excited to shine a light on Brett—a Splunk consultant, innovative ...

Index This | What can you do to make 55,555 equal 500?

April 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

Say goodbye to manually analyzing phishing and malware threats with Splunk Attack ...

In today’s evolving threat landscape, we understand you’re constantly bombarded with phishing and malware ...