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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...