Reporting

Report only values of a calculated field whose value is greater than 1

SteffHH
Engager

Hello,
what must I do to report only values of diff_min greater than e.g. 1

endTime startTime 
| eval ET=strptime(endTime,"%Y-%m-%d %H:%M:%S.%3Q")
| eval ST=strptime(startTime,"%Y-%m-%d %H:%M:%S.%3Q")
| eval diff_min=(ET-ST)/60
| fields diff_min startTime endTime
| sort -diff_min

Sorry, it's my first dashboard.
Thank you 🙂 

Steff

Labels (1)
Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @SteffHH.,

if this answer solves your needs, please, accept it or tell me how I can help you.

Ciao and happy splunking.

Giuseppe

P.S.: Karma Points are appreciated 😉

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @SteffHH,

I think that you could try the Splunk Search Tutorial, To understand how to build a search https://docs.splunk.com/Documentation/Splunk/8.0.6/SearchTutorial/WelcometotheSearchTutorial

Anyway, you have to:

  • at first identify the container of your logs: e.g. index=your_index,
  • then dentify the events to use: e.g. action=start and action=end,
  • then identify a key to group data. e.g. events of an host or an user,
  • then build the variables you did: eval ...,
  • at least group all the values By the key you choose: stats ...,
  • and display results: table ....

having something like this:

 

 

index=your_index (action=start or action=end)
| stats earliest(_time) AS startTime latest(_time) AS endTime BY user
| eval 
     diff_min=(endTime-startTime)/60,
     startTime=strftime(startTime,"%Y-%m-%d %H:%M:%S.%3Q"),
     endTime=strftime(endTime,"%Y-%m-%d %H:%M:%S.%3Q")
| table user diff_min startTime endTime
| sort -diff_min

 

 Ciao.

Giuseppe

SteffHH
Engager

Thx @gcusello for your help 😃

 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @SteffHH.,

if this answer solves your needs, please, accept it or tell me how I can help you.

Ciao and happy splunking.

Giuseppe

P.S.: Karma Points are appreciated 😉

Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...