-
Notifications
You must be signed in to change notification settings - Fork 94
Home
michajlo edited this page Nov 20, 2012
·
2 revisions
The `jrugged` library provides straightforward add-ons to existing code to make it more robust and easier to manage.
Although there are several lower-level building block classes here available for custom solutions, most clients will find they can use just the following classes:
- CircuitBreaker provides a way to wrap a service in a way that provides a bulkhead against system failure; when a remote service fails, further calls to the service are prevented for a period of time to allow the remote service to recover.
- Initializer provides a way to decouple service construction from initialization/startup and allows the latter to occur in the background, even retrying if initial attempts to initialize fail.
- PerformanceMonitor provides a way to wrap a service and collect a series of useful statistics about its latency and throughput, even calculating moving averages across different time windows.
- Monitorable, Status, and RolledUpStatus are related classes that provide a simple RED/YELLOW/GREEN encoding for service health, possibly useful for constructing operational dashboards.
Check out our Examples page to get information on the library and how it works.
Check out our new contribution to the project, documentation and configuration files for Hyperic integration with JRugged JMX information located at our Hyperic Monitoring page.