Splunk Search

Insert % sign for each result in a specific column

hagjos43
Contributor

Current search results are in a table form such as the following:

Search String | Search Engine | Visits | Percent
Document123   | Google        | 25     | 9.0123
ABC123        | Yahoo         | 21     | 8.7501
HelloWorld    | Bing          | 2      | 1.0201

I'm attempting to have it displayed as the following:

Search String | Search Engine | Visits | Percent
Document123   | Google        | 25     | 9.0123%
ABC123        | Yahoo         | 21     | 8.7501%
HelloWorld    | Bing          | 2      | 1.0201%

Thanks in advance!
Joe

Tags (3)
1 Solution

gfreitas
Builder

Hi Joe,

You can simply do that:

| eval Percent = Percent + " %"

Hope this helps!!

View solution in original post

lguinn2
Legend

At the end of your search, add

| fieldformat Percent=tostring(Percent) + "%"

That should do it!

demkic
Explorer

Is it possible to also round to two decimal places in addition to adding the % at the end of the search?

0 Karma

demkic
Explorer

It's ok, I figured it out with the round(x,y) command.

0 Karma

gfreitas
Builder

Hi Joe,

You can simply do that:

| eval Percent = Percent + " %"

Hope this helps!!

hagjos43
Contributor

Perfect!!!

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...