Splunk Search

How to display the time in _time?

nive00
Engager

I need to display the maximum count of users logged in per day (at what time).

I am able to get the max user count from below query. but I am not sure on how to get the time at which maximo user's were logged in.

index=hwm_* sourcetype=was:maximo:sysout UID=* OR uid=* asset_env=PROD  | eval username=coalesce(UID,uid) | timechart span=1h dc(username) as usercount | timechart span=1d max(usercount)
Tags (1)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

If you want the maximum number of users attempting to login in an hour per day plus the hour that maximum occurred in, try this:

 index=hwm_* sourcetype=was:maximo:sysout UID=* OR uid=* asset_env=PROD  | eval username=coalesce(UID,uid)
| bin _time span=1h | stats dc(username) as users by _time
| bin _time as day span=1d | eventstats max(users) as max by day
| where users=max | fields - day max

Note, this will yield multiple hours per day if the maximum occurs multiple times that day.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

If you want the maximum number of users attempting to login in an hour per day plus the hour that maximum occurred in, try this:

 index=hwm_* sourcetype=was:maximo:sysout UID=* OR uid=* asset_env=PROD  | eval username=coalesce(UID,uid)
| bin _time span=1h | stats dc(username) as users by _time
| bin _time as day span=1d | eventstats max(users) as max by day
| where users=max | fields - day max

Note, this will yield multiple hours per day if the maximum occurs multiple times that day.

nive00
Engager

Thank you!

0 Karma
Get Updates on the Splunk Community!

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

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...