In normal Splunk Enterprise we can list all the savedsearch using rest command like below
| rest /servicesNS/-/MYAPP/saved/searches
So I wanted a rest command similar to above to list all the Services made in the ITSI App.
Please someone provide me the query.
Hi @vicky05ssr
Please use this search, it will list all the Service and KPI's associated with it.
| inputlookup service_kpi_lookup | rename title as ServiceTitle kpis.title as KPITitle | stats count by ServiceTitle, KPITitle | mvcombine KPITitle
Thanks
Approve the answer, if this helps you.
Thanks
thank you!
Hi @vicky05ssr
If you only want the rest call way, Here is the query.
| rest splunk_server=local servicesNS/nobody/SA-ITOA/itoa_interface/service fields="title,_key,kpis._key,kpis.title"
Thanks