Splunk Search

How to get the count of events in a bucket on a particular indexer?

stevennoble
Explorer

I'd like to be able to get a count of the number of events in a bucket on a particular indexer. Is there a binary for this?

Tags (3)
0 Karma

lguinn2
Legend

You could run this search:

| dbinspect index=yourindexname 
| where splunk_server="name of indexer"

There are a bunch of fields that are returned - the one you want is eventCount.

You might also want to use some of the other fields in the where command to limit the results.

I don't know of a binary that you could run.

0 Karma

lguinn2
Legend

Once you have the bucket id (using @yannK's great suggestion), you can do this

| dbinspect index=yourindexname
| where splunk_server="name of indexer" bucketId="bucket id"

0 Karma

yannK
Splunk Employee
Splunk Employee

or on the file system, look in the hidden bucketManifest in the index.

example in $SPLUNK_HOME/var/lib/splunk/defautldb/db/.bucketManifest

id,path,"raw_size","event_count","host_count","source_count","sourcetype_count","size_on_disk",modtime,"frozen_in_cluster","origin_site"
"_internal~1~7A23D5BD-1F4C-49B2-A9E7-A20F2C3E460F","db_1408586228_1408560993_1",15352541,69039,1,10,8,11612160,1408667375,0,""

0 Karma

yannK
Splunk Employee
Splunk Employee

if you are trying to identify in which bucket an event is :

<my event> | eval bkt=_bkt | table bkt index splunk_server

will tell you the index, the bucket and the indexer.
the you can do the |dbinspect on this indexer.

0 Karma

stevennoble
Explorer

do you know if I can narrow this down to a single bucket? (this is pretty helpful though)

0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...