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!

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...