All Apps and Add-ons

Count of Apps

sheltomt
Path Finder

Upper management would like a count of all apps installed on our main Search Head. They want a "how many right now" to compare against in the future. My idea is to just make a then/now type report, haven't decided on visualization.

I'm not finding anything on Google that would allow me to count apps on demand.

Has anyone done this?

Tags (1)
0 Karma
1 Solution

kmorris_splunk
Splunk Employee
Splunk Employee

You can do this via rest. Try this first to get the list of apps:

| rest /services/apps/local | table label version

If you want a count of all the apps:

| rest /services/apps/local | stats count as numberofapps

If you just want enabled apps, you could use:

| rest /services/apps/local | search disabled=0 | stats count as numberofapps

View solution in original post

0 Karma

lguinn2
Legend

Well - one of the problems is this: do you want to count disabled apps? Do you want to count the built-in apps? Do add-ons count?

But if you just want to know how many apps are on your main search head, you can run this search:

| rest /services/apps/local | fields label title visible disabled configured core | stats count by disabled

This example breaks out the disabled vs. enabled apps

0 Karma

kmorris_splunk
Splunk Employee
Splunk Employee

You can do this via rest. Try this first to get the list of apps:

| rest /services/apps/local | table label version

If you want a count of all the apps:

| rest /services/apps/local | stats count as numberofapps

If you just want enabled apps, you could use:

| rest /services/apps/local | search disabled=0 | stats count as numberofapps
0 Karma

sheltomt
Path Finder

Thank you! Exactly what I was looking for.

0 Karma
Get Updates on the Splunk Community!

Data Management Digest – December 2025

Welcome to the December edition of Data Management Digest! As we continue our journey of data innovation, the ...

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...