Untitled

 avatar
unknown
plain_text
22 days ago
316 B
3
Indexable
// fetch all LINUX hosts that run Java processes
// using a mix of classicEntitySelector and native DQL filters
fetch dt.entity.host
| filter in (id, classicEntitySelector("type(host),toRelationship.isProcessOf(type(PROCESS_GROUP_INSTANCE),softwareTechnologies(JAVA))"))
| fieldsAdd osType
| filter osType == "LINUX"
Leave a Comment