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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...