0.01
No release in over 3 years
Low commit activity in last 3 years
RightAgent provides a foundation for running an agent on a server to interface in a secure fashion with other agents in the RightScale system using RightNet, which operates in either HTTP or AMQP mode. When using HTTP, RightAgent makes requests to RightApi servers and receives requests using long-polling or WebSockets via the RightNet router. To respond to requests it posts to the HTTP router. When using AMQP, RightAgent uses RabbitMQ as the message bus and the RightNet router as the routing node to make requests; to receives requests routed to it by the RightNet router, it establishes a queue on startup. The packets are structured to invoke services in the agent represented by actors and methods. The RightAgent may respond to these requests with a result packet that the router then routes to the originator.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

< 2.0, >= 0.12.10
>= 0
~> 1.4
< 0.6, >= 0.4.4
~> 2.0
~> 1.7.0.3
< 3.0, >= 2.4.1
 Project Readme

“master” branch: <img src=“https://travis-ci.org/rightscale/right_agent.svg?branch=master” alt=“Build Status” />

RightAgent¶ ↑

DESCRIPTION¶ ↑

Synopsis¶ ↑

RightAgent provides a foundation for running an agent on a server to interface in a secure fashion with other agents in the RightScale system using RightNet, which operates in either HTTP or AMQP mode. When using HTTP, RightAgent makes requests to RightApi servers and receives requests using long-polling or WebSockets via the RightNet router. To respond to requests it posts to the HTTP router. When using AMQP, RightAgent uses RabbitMQ as the message bus and the RightNet router as the routing node to make requests; to receives requests routed to it by the RightNet router, it establishes a queue on startup. The packets are structured to invoke services in the agent represented by actors and methods. The RightAgent may respond to these requests with a result packet that the router then routes to the originator.

Refer to the wiki (github.com/rightscale/right_agent/wikis) for up-to-date documentation.

Also use the built-in issues tracker (github.com/rightscale/right_agent/issues) to report issues.

Maintained by the RightScale Cornsilk Team

Interface¶ ↑

A RightAgent exposes its services via actors and methods that are invoked by requests packets it receives via its message queue. All RightAgents have a general purpose actor named agent_manager that provides the following services:

  • agent_manager/ping: Respond with basic status information to indicate that active

  • agent_manager/stats: Retrieve statistics about agent operation

  • agent_manager/set_log_level: Change log level of agent

  • agent_manager/execute: Eval code in context of agent

  • agent_manager/connect: Connect agent to additional broker or reconnect it to one

  • agent_manager/disconnect: Disconnect agent from broker

RightAgent comes with several library modules for forming basic command line tools:

  • agent_deployer: Build a configuration file for running the agent (rad tool)

  • agent_controller: Manage an agent that has been configured (rnac tool)

  • stats_manager: Display operation statistics for an agent (rstat tool)

  • log_level_manager: Retrieve and set log level for an agent (rlog tool)

Supported Configuration¶ ↑

RightAgent has been tested on EC2 instances running CentOS 5.2 and Ubuntu 8.10.

Work in Progress¶ ↑

RightAgent is work in progress, expect more documentation and examples in the near future.

Owned by the RightScale Cornsilk team.

ADDITIONAL RESOURCES¶ ↑

LICENSE¶ ↑

RightAgent

Copyright

Copyright © 2011 RightScale, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.