Dashboards & Visualizations

Login dashboard thats too complex for me

williamsmew
New Member

I need to create a search string that shows the first interactive logon of the specified account and then the final logoff of the day for the same account. This is beyond me, ANY help is appreciated.

I am positive this is going to expand into a dashboard request showing all users in the office.

I probably have the wrong tags on it, no idea where this should go.

Tags (2)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi williamsmew,
are you speaking about Windows audit logs or application logs?
If Windows, there's a problem because Windows audit logs are very many and search is very slow (a Windows user login generates around 10-12 login/logout events and it's repeted many times in a connection!).

Anyway, the approach should be the following:

  • identify login and logout events (e.g. in windows login is Eventcode=4624 and logout is EventCode=2634),
  • then identify username field (e.g. in Windows is user),
  • ther run a search like the following (in Windows):

    index=wineventlog (EventCode=4624 OR EventCode=4634)
    | stats earliest(_time) AS earliest latest(_time) AS latest count BY user
    In this way you have the first login and the last logout in a time period.

Bye.
Giuseppe

0 Karma

woodcock
Esteemed Legend

Show us your login and logout events.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

What have you tried so far?

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...