Skip to main content

miqro_alarm

This is a full-fledged alarm logic, completely based on MQTT inputs and outputs. Reliability was a top priority during development.

Features:

  • Listens to MQTT topics for alarm inputs
  • Custom conditions for alarms can be expressed, e.g., if a value rises above a certain threshold
  • Prealarms are supported - raise awareness to an issue before the full alarm is triggered, or allow time for disabling the alarm
  • Debouncing of input signals is supported, e.g., to avoid false alarms due to sensor noise
  • Alarm outputs:
    • Text messages sent to MQTT topics (e.g., an SMS gateway, push message provider, etc.)
    • Switch outputs, i.e., MQTT topics expecting custom messages (e.g., to connect to other MQTT services or to drive lights, sirens, etc.)
      • Messages can be repeated in custom intervals
      • Different alarm schedules can be mapped to one topic, e.g., to show a different light pattern for intrusion alarms and fire alarms
  • Alarm groups capture multiple inputs and drive one or more alarm outputs
  • Comprehensive support for liveness checks:
    • If an MQTT topic is not received in a certain interval, send a notification
    • Ensure that other services are alive, send notification if they fail
    • Can call an external HTTP liveness check to ensure the alarm service is still running
  • Support for alarm inhibition (e.g., suppress an intrusion alarm when owner is at home)
  • Alarms can be switched on/off and observed via MQTT

See (examples/miqro.example.yml)[examples/miqro.example.yml] for configuration examples.

Installing

To install the software, follow these steps as root:

  • If pip3 is not installed, run apt install python3-pip first.
  • Then run pip3 install miqro_alarm
  • Create the configuration file /etc/miqro.yml
  • Install the system service:
    • miqro_alarm --install
    • systemctl enable miqro_alarm
    • systemctl start miqro_alarm

Configuration

The configuration is based on a few concepts:

  • Outputs define MQTT topics an alarm can be sent to. This can be:
    • A text output: This output is defined by a single MQTT topic that accepts a human-readable message, for example, an SMS gateway.
    • A switch output: Defines one or more MQTT topics that accept custom messages. This can be used to drive lights, sirens, etc. You can define separate MQTT topics for different alarm schedules, e.g., to show a different light pattern for intrusion alarms and fire alarms. For each alarm schedule, you can define the MQTT topic, the message that is sent when the alarm is activated, whether the message is to be repeated, and an MQTT topic and message that is sent when the alarm is deactivated.
  • Alarm Groups define a set of inputs that are to be monitored. If any of the inputs is triggered, the alarm for the group is activated. Each alarm group offers a number of configuration options:
    • Each group has a name that it used in the MQTT messages and a human-readable label.
    • The alarm group can be configured to trigger a number of
      outputs at once.
    • You can also define a prealarm, which is activated before the alarm is triggered. After a defined interval, the prealarm is deactivated and the alarm is triggered.
    • You can define a number of inputs. Each input is defined by a single MQTT topic and a condition. If the condition is met, the input is triggered. Conditions can be defined using python expressions. You can define a number of conditions, e.g., if a value rises above a certain threshold or if a value is below a certain threshold. Additionally, there is a timeout for each input that you can define. If no message is received for the input in the defined interval, the input is considered to be dead and a notification will be sent.
    • You can define liveness checks for each alarm group: If a liveness check is not triggered in a certain interval, a notification is sent. This can be used, e.g., to check that a sensor sends data in a certain interval or that another service is still running.
    • You can define inhibitors for each alarm group. If an inhibitor is triggered, the alarm is inhibited. This can be used, e.g., to suppress an intrusion alarm when the owner is at home.

See (examples/miqro.example.yml)[examples/miqro.example.yml] for configuration examples and explanations.

MQTT Topics

:outbox_tray: Published Topics

For each alarm group, the following topics are published:

  • service/alarm/GROUP1/state — the state of alarm group GROUP1: off, prealarm, or alarm

  • service/alarm/GROUP1/enabled/state1 when the group is enabled, 0 otherwise

  • service/alarm/GROUP1/inhibited/state1 when the alarm is inhibited, 0 otherwise

  • service/alarm/GROUP1/any_inhibitor_active1 if alarm group is manually inhibited or via a defined inhibitor, 0 otherwise

  • service/alarm/GROUP1/all_inputs_online1 when all inputs of this group are live, 0 otherwise

  • service/alarm/GROUP1/live1 when all liveness checks for this group are OK and all inputs and inhibitors are live

  • service/alarm/g1/display_state — a unified view on the state of this alarm group: disabled, inhibited, enabled, prealarm, alarm — recommended for use in user interfaces

For each input of the group:

  • service/alarm/GROUP1/input/INPUT1/state — the state of this input: invalid_response, unknown, offline, or online

  • service/alarm/GROUP1/input/INPUT1/value — the last evaluated value for this alarm input — 1 or 0

Same for each inhibitor (../inhibitor/..) and liveness check (../liveness/..) of the alarm group.

All outputs listed above are also published in a JSON object at service/alarm/GROUP1/info.

:inbox_tray: Subscribed Topics

The following topics can be used to control the alarm groups:

  • service/alarm/GROUP1/enabled/command — send 1 to enable alarm group, 0 to disable

  • service/alarm/GROUP1/inhibited/command — send 1 to (manually) inhibit alarm group, 0 to remove manual inhibition

  • service/alarm/GROUP1/reset/command — send 1 to reset the alarm when it is active (in alarm or prealarm state)

  • service/alarm/GROUP1/reset/auto/command — send 1 to reset the alarm, if it is in alarm or prealarm state; otherwise, the alarm is disabled or enabled — this is to be used in user interfaces

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

miqro-alarm-0.2.1.tar.gz (24.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

miqro_alarm-0.2.1-py3-none-any.whl (22.9 kB view details)

Uploaded Python 3

File details

Details for the file miqro-alarm-0.2.1.tar.gz.

File metadata

  • Download URL: miqro-alarm-0.2.1.tar.gz
  • Upload date:
  • Size: 24.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.7.3 Linux/5.10.103-v7l+

File hashes

Hashes for miqro-alarm-0.2.1.tar.gz
Algorithm Hash digest
SHA256 434268f70b2a0b0d05b04de654cda93110cb1e020964fe4614149759362993f2
MD5 970c34074affede7e30e7c882a0c5e1d
BLAKE2b-256 6a7435258b8786de2f31618f3d4f622b43fb74827281728cdd10aae3149e5df4

See more details on using hashes here.

File details

Details for the file miqro_alarm-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: miqro_alarm-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 22.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.7.3 Linux/5.10.103-v7l+

File hashes

Hashes for miqro_alarm-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2fa5830e63139c88ce60657104a8b64c5a5ee9e053ee965101ea9cee96f8818b
MD5 bd8dc230000c3c09a75249e0ea5f41c0
BLAKE2b-256 d8d8d7127e1a0d9853be3191fcf7f3212c026b78d24b712c96c6905be7eddc93

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page