Splunk Search

Add an incremental number field in search output

sympatiko
Communicator

HI,

I just want to ask if it's possible to have an incremental number in my output table in splunk search? Example:

Index=a dstip="*" | top limit=20 dstip

dstip percent

1 dstip1 100
2 dstip2 99
..
..

Originally the output has no # fields. Is possible to add that in my search command?

Thanks,

Tags (2)

lguinn2
Legend

Try this

index=a dstip="*" 
| top limit=20 dstip showcount=f
| eval counter=1
| accum counter as LineNumber
| fields - counter
| table LineNumber dstip percent

sympatiko
Communicator

Hi Iguinn,

Thanks for your help. If I put the LineNumber on the on the last statement like this "table LineNumber dstip percent" no value on the LineNumber field is being displayed but when I search like this "table dstip percent LineNumber" it has a value.

Thanks you

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, ...