Splunk Search

How to generate a search to find the all the indexes and their sourcetypes without using a wildcard?

kteng2024
Path Finder

hi,

i would like to know the search to find all the indexes and their sourcetypes . But my search is:

index=* | dedup sourcetype | table sourcetype 

and i selected " ALL TIME" . So, is there any other way to find out the indexes and their sourcetypes without using a wildcard and ALL TIME?

aaraneta_splunk
Splunk Employee
Splunk Employee

@kteng2024 - Looks like you have a few possible solutions to your question. If one of them provided a working solution, please don't forget to click "Accept" below the best answer to resolve this post. If you still need help, please leave a comment. Don’t forget to upvote anything that was helpful too. Thanks!

0 Karma

mgrosholz
Path Finder

So your search might be cumbersome because you are not using metadata. Metadata is perfect for this instance and does not require Splunk to search all indexes at search time.

You should use something like this...

 | metadata type=sourcetypes index=*

Much like others above have mentioned.

0 Karma

niketn
Legend

If you are just trying to find all the sourcetypes you can also try metadata command

| metadata type=sourcetypes index=* 
| table sourcetype
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

DalJeanis
Legend

s2_splunk
Splunk Employee
Splunk Employee

Try this | tstats values(sourcetype) where index=* by index

It uses index files only, so it should complete pretty quickly without having to scan all of your data.

Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...