There's a query for virtually everything 🙂
I'd go along this path: Compute a list of all your hosts and subtract the list of hosts sending the particular sourcetype... something like this:
| metadata type=hosts index=* | fields host | search NOT [search index=* sourcetype=particular | fields host | dedup host]
Note, replace index=* if you only want to search a specific set of indexes.
There's a query for virtually everything 🙂
I'd go along this path: Compute a list of all your hosts and subtract the list of hosts sending the particular sourcetype... something like this:
| metadata type=hosts index=* | fields host | search NOT [search index=* sourcetype=particular | fields host | dedup host]
Note, replace index=* if you only want to search a specific set of indexes.