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!

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...