This project has retired. For details please refer to its Attic page.
org.apache.polygene.library.alarm (Apache Polygene™ (Java Edition) SDK 3.0.0)
Skip navigation links

Package org.apache.polygene.library.alarm

Alarm Systems.

See: Description

Package org.apache.polygene.library.alarm Description

Alarm Systems.

Alarm Systems are originally used in Industrial Automation and Process Control systems, to monitor the health of external devices and software functions in large scale plants. The semantics in an Alarm system are well-defined and allows for excellent aggregation and overviews, fine-grained workflow of system health issues and rich data sets around any issues.

This Alarm System, that is based on Polygene's excellent persistence support, is an attempt at bringing a first-class model from the industrial automation world into the enterprise of large-scale software systems, that nowadays are so large and un-wieldly that log files, syslog and emails can no longer cope with the burden of management needs.

The Conceptual Model

Although the inner details of an alarm system can be hard to fully understand, the conceptual model is fairly straight forward, and can be described with Alarm,Alarm Trigger, Alarm Status and Alarm Event. The behavior of the Alarm state machine, hence the workflow, is dictated by an Alarm Model.

Looking at each of these in greater detail.

Alarm

An Alarm is a tiny state-machine that tracks the Alarm Status (see below). An Alarm has certain attributes that are always present and custom attributes that are suitable for the domain in which the Alarm is being used. The Alarm Class and Alarm Category are attributes that are always present, together with an Alarm Name and an Alarm Description.

Alarm Class

There are 4 Alarm Classes, A to D, indicating the urgency if an Alarm Event is occurring on the Alarm.

Alarm Category

Alarm Category is a required attribute on the Alarm to indicate the target audience that needs to be informed about it. This can be used to differentiate between infrastructure concerns versus domain model issues, or direct Alarm Events to different recipients.

Alarm Model

The Alarm Model defines which Alarm Status types, Alarm Event types, Alarm Triggers and the behavior of the state machine in the Alarm itself.

The Alarm Model is an Polygene™ Service and located via the normal Visibility rules, making it possible to have a different Alarm Model in each Polygene™ module.

Alarm Status

The Alarm always has an Alarm Status. Most Alarm Models will have a Normal status which the Alarm is set to initially, and Activated is likely to be present as well. The Alarm Status only changes from one status to another through the use of an Alarm Trigger, but all triggers doesn't cause the Alarm Status to change.

Alarm Event

Whenever an Alarm changes its Alarm Status an Alarm Event is sent to all Alarm Listeners. Alarm Listeners are registered to the Alarm System. Alarm Event types are defined by the Alarm Model. Some common Alarm Event types/names are "activation", "acknowledgement" and "deactivation".

Alarm Trigger

Alarm Triggers are used to forward the workflow. The Alarm Model defines the available Alarm Triggers which are all plain Strings. Alarm Triggers are "commanding" such as "block", "activate" and "disable".

State Management

Alarm instances are Polygene™ Entities, so the Alarm Status is preserved over time in persisted storage. This in turn means that the Alarm must be accessed within a UnitOfWork and the Alarm is not valid outside the UnitOfWork.

For Entities that needs Alarms, this is fairly straight forward, by making an @Aggregated Association<Alarm> alarm; and have it being created in the Entity LifeCycle. For non-entities, this becomes a little bit trickier. After the Alarm is created the Identity of the Alarm needs to be preserved and used to retrieve the Alarm when it needs to be Triggered. It is NOT possible to put an Alarm Association in a Service's configuration, since you will not be able to access the Configuration members within the UnitOfWork managed by the configuration system.

Skip navigation links