Splunk Search

Add a percentage row into a chart?

ganinurceski
Engager

Hello there!

I want to add a percentage row into a chart table.

string:
index=smsc tag=MPRO_PRODUCTION DATA="8000000400000000" OR "8000000400000058" | dedup DATA | chart count by SHORT_ID, command_status_code | search NOT ESME_RTHROTTLED=0 | sort - ESME_RTHROTTLED | head 15

And the chart table:
alt text

The red result, is what i need to add. the Value in it should be calculated like the blue marked.
ESME_RTHROTTLED value get divided by ESME_RTHROTTLED and ESME_ROK together.
Can someone help me?

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

You're asking for a column, not a row. Columns can be created with the eval command.

... | eval "THROTTLING %" = ESME_RTHROTTLED / (ESME_ROK + ESME_RTHROTTLED) * 100
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

You're asking for a column, not a row. Columns can be created with the eval command.

... | eval "THROTTLING %" = ESME_RTHROTTLED / (ESME_ROK + ESME_RTHROTTLED) * 100
---
If this reply helps you, Karma would be appreciated.
0 Karma

ganinurceski
Engager

Does this add the column automatically in the chart table?

0 Karma

mydog8it
Builder

It will add the desired column to your results. However your sample data uses 223/(ESME_ROK + ESME_RTHROTTLED) * 100 as the formula. If that is right the search should be...

your_search | eval "THROTTLING %"=(223/(ESME_RTHROTTLED + ESME_ROK)*100)

0 Karma

ganinurceski
Engager

Thx! it worked!

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...