Refine your search:

3
2

When I run this search -

source="*conn.log" | rex field=_raw "\.IP = '(?<connectionIp>[^']+)" | fields host, connectionIp | chart count by host, connectionIp

The resulting chart only shows me 10 IP addresses, but I know there are more in there. How do I get it to show me more?

asked 05 Feb '10, 17:37

Mick's gravatar image

Mick ♦
4.0k1327
accept rate: 52%

edited 28 May '10, 12:54

gkanapathy's gravatar image

gkanapathy ♦
26.3k1622


One Answer:

By default, the table produced by the count command will only show you the top 10 results (columns) and then group the rest into the 'Other' column. To increase the number of columns in the table, append 'limit=x' to the end of your search, where 'x' is the number of columns you want to see.

link

answered 05 Feb '10, 17:39

Mick's gravatar image

Mick ♦
4.0k1327
accept rate: 52%

Post your answer
toggle preview

Follow this question

Log In to enable email subscriptions

RSS:

Answers

Answers + Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×134
×71
×36

Asked: 05 Feb '10, 17:37

Seen: 1,278 times

Last updated: 28 May '10, 12:54

Copyright © 2005-2012 Splunk, Inc. All rights reserved.