Splunk Search

Rounding a Calculated Field

jason_hotchkiss
Communicator

Greeting Splunkers:

Referring to: eval - Splunk Documentation where:

round(X,Y)Returns X rounded to the amount of decimal places specified by Y. The default is to round to an integer.


I am attempting the following:

| eval MemoryUtilization = round((memTotalMB - memFreeMB) / memTotalMB * 100),2)

I am receiving the following error: Error in 'eval' command: Failed to parse the provided arguments. Usage: eval dest_key = expression.

I know I can do it this way:

| eval MemoryUtilization = ((memTotalMB - memFreeMB) / memTotalMB * 100)
| eval MemoryUtilization = round(MemoryUtilization,2)


Is there a way to combine the two eval statements into one?

Thank you!

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

anilchaithu
Builder

@jason_hotchkiss 

parentheses is missing. The below should work

| eval MemoryUtilization = round(((memTotalMB - memFreeMB) / memTotalMB * 100),2)

 

-- Hope this helps

View solution in original post

0 Karma

anilchaithu
Builder

@jason_hotchkiss 

parentheses is missing. The below should work

| eval MemoryUtilization = round(((memTotalMB - memFreeMB) / memTotalMB * 100),2)

 

-- Hope this helps

0 Karma

jason_hotchkiss
Communicator

I was so close... thank you!  

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...