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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...