Relevance Expression for Solaris Process

(imported topic written by SystemAdmin)

I’m trying to write a relevance expression to detect all Solaris servers running a process that has a particular word in the process name. I’ve tried:

exist process whose (name of it contains “WORD”)

exist processes whose (name of it contains “WORD”)

and neither work. Am I missing something? Thanks in advance.

(imported comment written by hermann_huebler@at.ibm.com)

Not sure it works in Solaris but on Linux the following works for me:

exists running application whose (name of it as lowercase starts with “xyz”)

to determine if a process executes an application what starts with “xyz”