-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #234 from IvanShires/main
Add ZabbixV6 RoomAlert 6S Template
- Loading branch information
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
...me_Automation_Industrial_monitoring/template_avtech_room_alert_3s/6.0/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# RoomAlert 3S | ||
|
||
## Overview | ||
|
||
Zabbix template for the AVTECH Room Alert 3S environment monitor. This template can be used to monitor the temperature reading from the device's internal thermometer. | ||
|
||
|
||
To use, create a new host with an SNMP Interface pointing at the IP address of the Room Alert 3S. This interface **must be set to SNMPv1** otherwise it will not be able to read the temperature. | ||
|
||
|
||
Includes a 'high' alert trigger for temperatures in excess of 25°C and a 'critical' alert trigger for temperatures in excess of 30°C. | ||
|
||
|
||
|
||
## Macros used | ||
|
||
There are no macros links in this template. | ||
|
||
## Template links | ||
|
||
There are no template links in this template. | ||
|
||
## Discovery rules | ||
|
||
There are no discovery rules in this template. | ||
|
||
## Items collected | ||
|
||
|Name|Description|Type|Key and additional info| | ||
|----|-----------|----|----| | ||
|Temperature Celcius|<p>Temperature reading from the internal thermometer</p>|`SNMP agent`|temperatureCelcius<p>Update: 1m</p>| | ||
|
||
|
||
## Triggers | ||
|
||
There are no triggers in this template. | ||
|
59 changes: 59 additions & 0 deletions
59
...ndustrial_monitoring/template_avtech_room_alert_3s/6.0/template_avtecg_room_alert_3s.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
zabbix_export: | ||
version: '6.0' | ||
date: '2023-04-24T16:02:50Z' | ||
groups: | ||
- | ||
uuid: 7df96b18c230490a9a0a9e2307226338 | ||
name: Templates | ||
templates: | ||
- | ||
uuid: a7fed8a83f35402b9f091e7cab302282 | ||
template: 'RoomAlert 3S' | ||
name: 'RoomAlert 3S' | ||
groups: | ||
- | ||
name: Templates | ||
items: | ||
- | ||
uuid: 58ba356983814d55b51af5517a565647 | ||
name: 'Temperature Celcius' | ||
type: SNMP_AGENT | ||
snmp_oid: .1.3.6.1.4.1.20916.1.13.1.1.1.2.0 | ||
key: temperatureCelcius | ||
value_type: FLOAT | ||
units: °C | ||
description: 'Temperature reading from the internal thermometer' | ||
preprocessing: | ||
- | ||
type: MULTIPLIER | ||
parameters: | ||
- '0.01' | ||
- | ||
uuid: 59344a4017ed4dc2b9645e96c391e1e1 | ||
name: 'Temperature Fahrenheit' | ||
type: SNMP_AGENT | ||
snmp_oid: .1.3.6.1.4.1.20916.1.13.1.1.1.1.0 | ||
key: TemperatureFahrenheit | ||
value_type: FLOAT | ||
units: ºF | ||
description: 'Temperature reading from the internal thermometer' | ||
preprocessing: | ||
- | ||
type: MULTIPLIER | ||
parameters: | ||
- '0.01' | ||
triggers: | ||
- | ||
uuid: e3e1b254b80a42b3b560955481262d3d | ||
expression: 'last(/RoomAlert 3S/TemperatureFahrenheit)>86' | ||
recovery_mode: RECOVERY_EXPRESSION | ||
recovery_expression: 'last(/RoomAlert 3S/TemperatureFahrenheit,#3)<86' | ||
name: 'Critical Temperature Reading - Over 86ºF' | ||
priority: HIGH | ||
- | ||
uuid: 39a433ffa6c6430c8010156e0b392940 | ||
expression: 'last(/RoomAlert 3S/TemperatureFahrenheit)>77' | ||
recovery_mode: RECOVERY_EXPRESSION | ||
recovery_expression: 'last(/RoomAlert 3S/TemperatureFahrenheit,#3)<77' | ||
name: 'Temperature Warning - Over 77ºF' | ||
priority: AVERAGE |