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 Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...