Jump to: navigation, search

Difference between revisions of "Monasca/Message Schema"

(Event Message)
(Types)
Line 114: Line 114:
  
 
== Types ==
 
== Types ==
 +
This section describes the specific types used in messages.
 +
 
=== AlarmSubExpression ===
 
=== AlarmSubExpression ===
 
* AggregateFunction function
 
* AggregateFunction function

Revision as of 03:35, 14 January 2015

Overview

There are several messages that are published and consumed by various components in Monasca via the MessageQ.

Message Produced By Consumed By Kafka Topic Description
AlarmDefinitionCreatedEvent API Threshold Engine events When an alarm definition is created by the API an AlarmDefinitionCreatedEvent is published to the MessageQ.
AlarmDefinitionDeletedEvent API Threshold Engine events When an alarm definition is deleted by the API an AlarmDefinitionDeletedEvent is published to the MessageQ.
AlarmDefinitionUpdatedEvent API Threshold Engine events When an alarm definition is updated by the API an AlarmDefinitionUpdatedEvent is published to the MessageQ.
AlarmDeletedEvent API Threshold Engine events When an alarm is deleted by the API an AlarmDeletedEvent is published to the MessageQ.
AlarmUpdatedEvent API Threshold Engine events When an alarm is updated by the API an AlarmUpdatedEvent is published to the MessageQ.
AlarmStateTransitionedEvent Threshold Engine Notification Engine, Persister alarm-state-transitions When an alarm transitions state, such as from the OK to Alarm or Alarm to OK, this an AlarmStateTransitionedEvent is published to the MessageQ and persisted by the persister and processed by the Notification Engine. The API can query the history of AlarmStateTransitionedEvent.
AlarmNotification Notification Engine Persister alarm-notifications Currently unsupported This event is published to the MessageQ when the Notification Engine processes an alarm and sends a notification. The alarm notification is persisted by the Persister and can be queried by the API. The database maintains a history of all events.
Metric API, Transform and Aggregation Engine Persister, Threshold Engine metrics A metric sent to the API or created by the Transform Engine, Event Engine or Anomaly Engine is published to the MessageQ.
Event API, Transform Engine, Event Engine Persister, Event Engine raw-events, transformed-events An event sent to the API or created by the Transform Engine or Event Engine or is published to the MessageQ.

Alarm Definition Events

Alarm Definition Events are created when an alarm definition is created, deleted or updated by the API. These events are meant to be primarily consumed by the Threshold Engine to maintain a synchronized in-memory model of the alarm definitions in the system, without having to query or poll the Config Database. When the Threshold Engine starts up it queries the Config Database for all the alarm definitions to initialize it's internal model of alarm definitions. Subsequently, the Threshold Engine consumes AlarmDefinitionEvents to update it's internal model of the alarm definitions.

AlarmDefinitionCreatedEvent

  • String tenantId
  • String alarmDefinitionId
  • String alarmName
  • String alarmDescription
  • String alarmExpression
  • Map<String, AlarmSubExpression> alarmSubExpressions
  • List<String> matchBy

AlarmDefinitionDeletedEvent

  • String alarmDefinitionId
  • Map<String, MetricDefinition> subAlarmMetricDefinitions

AlarmDefinitionUpdatedEvent

  • String tenantId
  • String alarmDefinitionId
  • String alarmName
  • String alarmDescription
  • String alarmExpression
  • String severity
  • List<String> matchBy
  • boolean alarmActionsEnabled
  • Map<String, AlarmSubExpression> oldAlarmSubExpressions
  • Map<String, AlarmSubExpression> changedSubExpressions
  • Map<String, AlarmSubExpression> unchangedSubExpressions
  • Map<String, AlarmSubExpression> newAlarmSubExpressions

Alarm Events

Alarms are created by the Threshold Engine in response to when there are new metrics sent to the system that match an alarm definition. Currently, AlarmCreatedEvents are not created by the Threshold Engine when this occurs. Note, alarms are not created by the API.

When alarms are deleted or updated by the API an AlarmDeletedEvent and AlarmUpdatedEvent is created. AlarmDeletedEvents and AlarmUpdateEvents are primarily meant to be consumed by the Threshold Engine to delete or update it's internal in-memory model of alarms when they are updated or deleted by the API.

AlarmCreatedEvent

  • String tenantId
  • String alarmId
  • String alarmName
  • String alarmExpression
  • Map<String, AlarmSubExpression> alarmSubExpressions

AlarmDeletedEvent

  • String tenantId
  • String alarmId
  • List<MetricDefinition> alarmMetrics
  • String alarmDefinitionId
  • Map<String, AlarmSubExpression> subAlarms

AlarmUpdatedEvent

  • String alarmId
  • String tenantId
  • String alarmDefinitionId
  • List<MetricDefinition> alarmMetrics
  • Map<String, AlarmSubExpression> subAlarms
  • AlarmState alarmState
  • AlarmState oldAlarmState

AlarmStateTransitionedEvent

An AlarmStateTransitionedEvent is created when an alarm state changes. These events are primarily published by the ThresholdEngine and consumed by the Persister and Notification Engine. The AlarmStateTransitionEvent consists of the following:

  • String tenantId
  • String alarmId
  • String alarmDefinitionId
  • List<MetricDefinition> metrics
  • String alarmName
  • String alarmDescription
  • AlarmState oldState
  • AlarmState newState
  • boolean actionsEnabled
  • String stateChangeReason
  • String severity
  • long timestamp

AlarmNotification

Currently unsupported. This is a placeholder for future development when we add support for storing the notifications that have been sent.

Metrics Message

A metric that is sent to the API or created by the Transform Engine, Event Engine or Anomaly Engine is published to the MessageQ as a MetricsMessage. A MetricsMessage has the following fields:

  • MetricDefinition metric
  • meta:
    • String tenantId
    • String region: Should remove "region" as this isn't being used.
  • creation_time:

Event Message

TBD. Currently, there is a proof-of-concept implementation of events in Monasca, but the details haven't been formalized.

Types

This section describes the specific types used in messages.

AlarmSubExpression

  • AggregateFunction function
  • MetricDefinition metricDefinition
  • AlarmOperator operator
  • double threshold threshold
  • int period
  • int periods

MetricDefinition

  • String name
  • Map<String, String> dimensions

enum AlarmState

  • UNDETERMINED
  • OK
  • ALARM