Analysis for specific set of servers

(imported topic written by JesseR91)

I am needing to create an Analysis that only analyzes 3 servers. In the relevance, what would I use so only the 3 servers, ‘server1’, ‘server2’ and ‘server3’ report for this specific anaylsis. I know that 'computer name as lowercase = “server1” will work but how can I add server2 and server3 to the relevance?

I have added them to a group so I thought there might be relevance that I could specify the group instead of the computer names.

(imported comment written by jessewk)

Easiest way:

(computer name as lowercase = “server1” OR computer name as lowercase = “server2” OR computer name as lowercase = “server2”)

Slightly more efficient and succinct:

(it = “server1” OR it = “server2” OR it = “server3”) of (computer name as lowercase)

And a bonus option for 6.0 users:

disjunction of (it = “server1” ; it = “server2”; it = “server3”) of (computer name as lowercase)

(imported comment written by JesseR91)

thanks Jesse, I didn’t realize the OR statement could apply here. Thanks again.