Using xapply efficiently?

Hi all,

Were currently using xapply to run multiple ssh instances that then calls
a script that returns the PID of a webserver process.

Currently we have like 30 xapply statements in a script call checkit which
checks various webserver processes on various unix/linux boxes.

My question is is there a more efficient way of handling these instances
then calling 30 xapply statments? Could this script be written with just
one xapply? Heres what one line of code looks like for one of these instance.

xapply 'ssh %1 ./fccserv1' ajaxdev1
xapply 'ssh %1 ./<script name>' <servername>

Add about 30 more lines with the script name and server name changing for each line.

Thanks!