Splunk Search

Adding time in a search

sptelars
New Member

I would like to add the total amount of time an cs_id spends on the web daily. Ironport provides logs where the time is in unix time, does anyone know of a way to do this?

Tags (2)
0 Karma

gkanapathy
Splunk Employee
Splunk Employee

If the time is simply the number of seconds (or whatever), you could just do:

cs_id=myid | stats sum(timespent) by cs_id

But by "unix time" I guess you mean epoch time? If that's the case, I assume they must be providing a start and end time for each session, so you need to compute the duration from the difference:

cs_id=myid | eval duration = endtime-starttime | stats sum(duration) by cs_id

I really have no idea how the above information is actually represented in your logs, so it might not work (e.g., maybe the data in different events, and you have to use transaction to construct the sessions and start and durations yourself, I don't know.

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Telemetry Pipeline Management

Balancing Scale and Spend: Gaining Control Over High-Volume Metrics in Splunk Observability Cloud As ...

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...