Splunk Search

How to Round an eval average

tefa627
Explorer

How do I round these numbers with this search?

index=net_auth_long 
| eval time_hour=strftime(_time,"%H")
| chart eval(count(channel)/7) AS field_div_by_7 by channel time_hour

 

tefa627_0-1599857872883.png

 

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

thambisetty
SplunkTrust
SplunkTrust

| foreach * [ eval <<FIELD>> = round(<<FIELD>>,0)]

————————————
If this helps, give a like below.

View solution in original post

0 Karma

thambisetty
SplunkTrust
SplunkTrust

| foreach * [ eval <<FIELD>> = round(<<FIELD>>,0)]

————————————
If this helps, give a like below.
0 Karma

isoutamo
SplunkTrust
SplunkTrust
Time by time you must add ’ to surround <<FIELD>> to get SPL to known that it’s a field like
| foreach * [ eval <<FIELD>> = round(‘<<FIELD>>’)]
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

 

 

| chart eval(floor(count(channel)/7)) AS field_div_by_7 by channel time_hour

 

or

 

| chart eval(round(count(channel)/7, 0)) AS field_div_by_7 by channel time_hour

Sorry, bracket was in the wrong place - still not sure if it will work though

 

 

0 Karma

tefa627
Explorer

Neither way worked..

tefa627_0-1599859283407.png

 

0 Karma
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

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

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...