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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...