Hello @Sven1, To list down all the correlation searches from all Data Models, can you please try below search - | rest /servicesNS/-/-/saved/searches splunk_server=local
| where disabled=0
| search search="*datamodel*"
| rex field=search max_match=0 "from\ datamodel(\ |\=\"|\=|\:\"|\=)(?P<datamodel_Name>[a-zA-Z0-9\_]+)"
| table datamodel_Name, title, qualifiedSearch, search, updated, "eai:acl.owner", author, "eai:aal.app"
| mvexpand datamodel_Name
| stats values(title) by datamodel_Name
| fields - count Above search will give you near-accurate results. Please accept the solution if this helps!
... View more