Monitoring Splunk

Find all unused serverclasses

Clayfield
Engager

I would like to find all unused serverclasses on a deployment server.

Labels (1)
0 Karma
1 Solution

Clayfield
Engager

This search queries the REST API for all serverclasses that don't have any clients.

 

| rest /services/deployment/server/serverclasses
| appendcols [ | rest /services/deployment/server/clients
| eval classes = ""
| foreach serverClasses.*.stateOnClient [ eval classes=classes+","+"<<MATCHSTR>>" ]
| fields classes
| head 1
| eval classes=split(classes, ",")]
| eventstats values(classes) as classes
| eval used = if(in(title, classes), 1, 0)
| fields title used
| search used=0

View solution in original post

0 Karma

Clayfield
Engager

This search queries the REST API for all serverclasses that don't have any clients.

 

| rest /services/deployment/server/serverclasses
| appendcols [ | rest /services/deployment/server/clients
| eval classes = ""
| foreach serverClasses.*.stateOnClient [ eval classes=classes+","+"<<MATCHSTR>>" ]
| fields classes
| head 1
| eval classes=split(classes, ",")]
| eventstats values(classes) as classes
| eval used = if(in(title, classes), 1, 0)
| fields title used
| search used=0
0 Karma
Get Updates on the Splunk Community!

AI for AppInspect

We’re excited to announce two new updates to AppInspect designed to save you time and make the app approval ...

App Platform's 2025 Year in Review: A Year of Innovation, Growth, and Community

As we step into 2026, it’s the perfect moment to reflect on what an extraordinary year 2025 was for the Splunk ...

Operationalizing Entity Risk Score with Enterprise Security 8.3+

Overview Enterprise Security 8.3 introduces a powerful new feature called “Entity Risk Scoring” (ERS) for ...