i all
I'm tasked with performing an audit of our Splunk (Cloud) Search Heads (2) as many Apps \ Add-Ons have been sporadically installed onto them over the years and problems are occurring.
The aim is to export the search to .CSV to compare, detect gaps, mismatches etc., identify candidates for upgrade or removal etc.
Any offers to help greatly appreciated.
You have a REST endpoint to manage apps.
https://docs.splunk.com/Documentation/Splunk/8.2.2/RESTREF/RESTapps
For example - to check for upgradeable apps you can do something like:
| rest /services/apps/local
| where version!='update.version'
| table label version update.version
You have a REST endpoint to manage apps.
https://docs.splunk.com/Documentation/Splunk/8.2.2/RESTREF/RESTapps
For example - to check for upgradeable apps you can do something like:
| rest /services/apps/local
| where version!='update.version'
| table label version update.version
Tnx @PickleRick
That's sufficient to provide me the details.