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!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Building Momentum: Splunk Developer Program at .conf25

At Splunk, developers are at the heart of innovation. That’s why this year at .conf25, we officially launched ...