Splunk Search

How to make Linechart of users logged in throughout the day with tstats?

powermundsen
Engager

I want to make a linechart of users in a division logged in throughout the day, but I can't make the tstat search work with linechart. The count works fine but I want to group the users by 30 minutes.

A typical users are:
COMPANY\HR94832
COMPANY\AC49328

So I have to filter the user with "COMPANY\HR*.
| tstats summariesonly=true allow_old_summaries=true
dc(Session_SessionDetail.SessionUser) as Users
from datamodel=uberAgent.Session_SessionDetail
where Session_SessionDetail.SessionUser = "COMPANY\HR*" by _time

alt text

0 Karma
1 Solution

somesoni2
Revered Legend

You just need to add span in your tstats command, like this

| tstats summariesonly=true allow_old_summaries=true
dc(Session_SessionDetail.SessionUser) as Users
from datamodel=uberAgent.Session_SessionDetail 
where Session_SessionDetail.SessionUser = "COMPANY\\HR*" by _time span=30m

See this for more information on this option
http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Tstats#BY_clause_arguments

View solution in original post

somesoni2
Revered Legend

You just need to add span in your tstats command, like this

| tstats summariesonly=true allow_old_summaries=true
dc(Session_SessionDetail.SessionUser) as Users
from datamodel=uberAgent.Session_SessionDetail 
where Session_SessionDetail.SessionUser = "COMPANY\\HR*" by _time span=30m

See this for more information on this option
http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Tstats#BY_clause_arguments

renjith_nair
Legend

Hi @powermundsen,

What about adding |bin span=30m _time|stats sum(count) by _time,sourcetype to end of your search

---
What goes around comes around. If it helps, hit it with Karma 🙂
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...