Splunk Search

Why am I unable to convert my addcoltotals value of MB to TB using eval?

dean1
New Member

Hello Splunk Ninjas

I'm trying to convert my addcoltotals of MB to TB using the eval statement which does not work....

index=myindex sourcetype=mysourcetype | table Cluster, Capacity_MB | addcoltotals  label=TOTALS labelfield=Cluster | eval  TOTALS = round(TOTALS/1024,2)

Thanks!

0 Karma
1 Solution

javiergn
Super Champion

Hi,

Your labelfield=Cluster means that's the name of the field that it's going to store the string "TOTALS".
TOTALS is not a field, it's a value. The field is Capacity_MB.

Therefore if you just want to apply it to that particular row in your table you can do it this way:

| eval Capacity_MB = if(Cluster == "TOTALS", round(Capacity_MB/1024,2), Capacity_MB)

Hope that makes sense.

Thanks,
J

View solution in original post

javiergn
Super Champion

Hi,

Your labelfield=Cluster means that's the name of the field that it's going to store the string "TOTALS".
TOTALS is not a field, it's a value. The field is Capacity_MB.

Therefore if you just want to apply it to that particular row in your table you can do it this way:

| eval Capacity_MB = if(Cluster == "TOTALS", round(Capacity_MB/1024,2), Capacity_MB)

Hope that makes sense.

Thanks,
J

dean1
New Member

Excellent - That worked - Thank you!

0 Karma
Get Updates on the Splunk Community!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

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