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!

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to Officially Supported Splunk ...