This is a client library for the Rackspace Monitoring as a Service. It is not feature complete... yet.
local Client = require('rackspace-monitoring').Client
local client = Client:new('username', 'token', nil)
client.entities.list(function(err, results)
if err then
p(err)
return
end
p(results)
end)
- Everything else
- Apache 2.0
- Ryan Phillips (rphillips)