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!

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