From 15d79125cf2f49bb4f6ece93ae423689175518f9 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Tue, 5 May 2009 18:05:48 +0000 Subject: [PATCH] improved docs. --- docs/Monitor.xml.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/Monitor.xml.in b/docs/Monitor.xml.in index cb29420..43580b4 100644 --- a/docs/Monitor.xml.in +++ b/docs/Monitor.xml.in @@ -13,7 +13,9 @@ Introduction The PlanetLab Administrative-Monitor API (Admin-Mon) is the interface through - which the slices access the Node API. + which PLC administrators access the Admin-Mon API. Some functions are + also accessible to users with lower privileges. But, all users must have an account + in the monitored PLC
Authentication @@ -25,7 +27,7 @@
Connection - The Admin-Mon XMLRPC server listens at http://monitor.planet-lab.org:8082. + The Admin-Mon XMLRPC server listens at http://PLC_MONITOR_HOST:8082/XMLRPC/ The XMLRPC server can be accessed remotely using a standard Python XMLRPC shell.
@@ -43,6 +45,8 @@ api = xmlrpclib.Server(API_SERVER, verbose=False, allow_none=True) if api.upAndRunning(): for i in api.getSiteStatus(auth): print i +else: + print "Admin-Mon API is not running."
-- 2.43.0