Another option that has worked for me in the past is to use Cache
Server Pages on multiple systems, then combine them into a single web
page for total system wide monitoring. The CSP and PHP routines below
are a demo of what can be done. This has worked in the past with D
ALL^%SS on VMS, but I can't seem to get it to work correctly on the
Apple right now.
Normally D ALL^%SS will provide a full system status without page
breaks, D THIS^%SS will provide just the namespace(UCI) that you are
current in.
The following CSP (Cache Server Page) will display the Cache Version
for a single system. If this is placed on all three systems, then via
a web browser you can look at all three systems.
----------------------------
<html>
<head>
<title>Testing Apple CSPs</title>
</head>
<body>
<pre>
<script language="Cache" runat="server">
W $ZVERSION
</script>
</pre>
</body>
</html>
----------------------------
The following web page uses inline frames to display all three systems
together in a single web page.
----------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=x-mac-
roman">
<title>Cache Versions</title>
</head>
<body>
<iframe src="
http://localhost:57772/csp/user/first.csp" height="30%"
width="100%"></iframe>
<hr>
<iframe src="
http://localhost:57772/csp/user/first.csp" height="30%"
width="100%"></iframe>
<hr>
<iframe src="
http://localhost:57772/csp/user/first.csp" height="30%"
width="100%"></iframe>
</body>
</html>