]> PlanetLab Administrative-Monitor API Documentation Introduction The PlanetLab Administrative-Monitor API (Admin-Mon) is the interface through which the slices access the Node API.
Authentication Authentication for operations is based on the identity of the connecting user. The standard PLCAPI authetication is used here.
Connection The Admin-Mon XMLRPC server listens at http://monitor.planet-lab.org:8082. The XMLRPC server can be accessed remotely using a standard Python XMLRPC shell.
An Example using the PLC and Admin-Mon API Access to the API is via standard XMLRPC. A simple example is below. import xmlrpclib auth = {'Username' : API_AUTH_USER, 'AuthMethod' : 'password', 'AuthString' : API_AUTH_PASSWORD} api = xmlrpclib.Server(API_SERVER, verbose=False, allow_none=True) if api.upAndRunning(): for i in api.getSiteStatus(auth): print i
PlanetLab API Methods &Methods;