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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...