Hi @anandhalagaras1, sorry, I didn't understand that you're using Splunk Cloud, anyway, go in the Cloud Monitoring Console to [Liense Usage -- Ingest -- Split by host] and you have the starting point search to modify adding the additional filter. In other words: (index=_internal host=*.*splunk*.* NOT host=sh*.*splunk*.* source=*license_usage.log* type="Usage")
| eval h=if(((len(h) == 0) OR isnull(h)),"(SQUASHED)",h)
| eval s=if(((len(s) == 0) OR isnull(s)),"(SQUASHED)",s)
| eval idx=if(((len(idx) == 0) OR isnull(idx)),"(UNKNOWN)",idx)
| search h IN (abc, def, gih, xyz, vbg)
| timechart span=1d eval(round((sum(b)/pow(2,30)),3)) AS Volume by h
| append [ | search
(index=summary source="splunk-ingestion" earliest=-30d@d)
| bin _time span=1d
| stats max(ingest_license) as license by _time
]
| stats values(*) as * by _time
| rename license as "license limit"
| fields - volume Ciao. Giuseppe
... View more