Splunk Search

help on basic eval

jip31
Motivator

hi

why "MemoryUsage" doenst return any results?

 eval FreeMemory = round(Value, 0). " MB" 
| eval TotalMemory = round((TotalPhysicalMemory / 1024 / 1024), 0). " MB" 
| eval MemoryUsage = (TotalMemory - FreeMemory) / TotalMemory
| stats last(FreeMemory) as "Free Memory", last(TotalMemory) as "Total memory", values(MemoryUsage) as "Memory Usage" by host

Is anybody can help me??

Tags (1)
0 Karma
1 Solution

nickhills
Ultra Champion

Because you have added MB to FreeMemory and TotalMemory in your early evals they are no longer numeric, so you cant do maths on them any more.

remove the ."MB" from the earlier evals, and add it to them at the end:

| eval Free Memory='Free Memory'."MB", Total memory='Total memory'."MB", Memory Usage='Memory Usage'."MB"

thus:

| eval FreeMemory = round(Value, 0)
 | eval TotalMemory = round((TotalPhysicalMemory / 1024 / 1024), 0)
 | eval MemoryUsage = (TotalMemory - FreeMemory) / TotalMemory
 | stats last(FreeMemory) as "Free Memory", last(TotalMemory) as "Total memory", values(MemoryUsage) as "Memory Usage" by host
 | eval Free Memory='Free Memory'."MB", Total memory='Total memory'."MB", Memory Usage='Memory Usage'."MB"
If my comment helps, please give it a thumbs up!

View solution in original post

0 Karma

nickhills
Ultra Champion

Because you have added MB to FreeMemory and TotalMemory in your early evals they are no longer numeric, so you cant do maths on them any more.

remove the ."MB" from the earlier evals, and add it to them at the end:

| eval Free Memory='Free Memory'."MB", Total memory='Total memory'."MB", Memory Usage='Memory Usage'."MB"

thus:

| eval FreeMemory = round(Value, 0)
 | eval TotalMemory = round((TotalPhysicalMemory / 1024 / 1024), 0)
 | eval MemoryUsage = (TotalMemory - FreeMemory) / TotalMemory
 | stats last(FreeMemory) as "Free Memory", last(TotalMemory) as "Total memory", values(MemoryUsage) as "Memory Usage" by host
 | eval Free Memory='Free Memory'."MB", Total memory='Total memory'."MB", Memory Usage='Memory Usage'."MB"
If my comment helps, please give it a thumbs up!
0 Karma
Get Updates on the Splunk Community!

New Year, New Changes for Splunk Certifications

As we embrace a new year, we’re making a small but important update to the Splunk Certification ...

Stay Connected: Your Guide to January Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...

[Puzzles] Solve, Learn, Repeat: Reprocessing XML into Fixed-Length Events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...