Splunk Search

can I show less characters in my result table

fengl2
Explorer

I have a search using the splunk table commands, but the text in one fields is too long so that I can't see the whole result in one screen, is there a way to show only the first 30 characters in that fields, thanks in advance.

Tags (1)
1 Solution

Ayn
Legend

You could truncate the field values using fieldformat:

... | fieldformat yourfield=substr(yourfield,1,30)

View solution in original post

abancel
Engager

Adding to the above answer in case this can help someone, since it took me a while to figure this out.
If the field to be truncated happens to be a multi value field, it must first be converted to a string with mvjoin before being truncated.

Both commands can then be combined:
| fieldformat yourfield=substr(mvjoin(yourfield',", "),1,30)+"..."

Ayn
Legend

You could truncate the field values using fieldformat:

... | fieldformat yourfield=substr(yourfield,1,30)
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...