There are 4 ways how to influence notifications:
- On the device itself
- On the settings of the plugin
- Globally
- Ignoring devices
Note
It's recommended to use the same schedule interval for all plugins responsible for scanning devices, otherwise false positives might be reported if different devices are discovered by different plugins. Check the Settings > Enabled settings section for a warning:
There are 4 settings on the device for influencing notifications. You can:
- Alert Events - Enables alerts of connections, disconnections, IP changes.
- Alert Down - Alerts when a device goes down. This setting overrides a disabled Alert Events setting, so you will get a notification of a device going down even if you don't have Alert Events ticked.
- Skip repeated notifications, if for example you know there is a temporary issue and want to pause the same notification for this device for a given time.
On almost all plugins there are 2 core settings, <plugin>_WATCH
and <plugin>_REPORT_ON
.
<plugin>_WATCH
specifies the columns which the app should watch. If watched columns change the device state is considered changed. This changed status is then used to decide to send out notifications based on the<plugin>_REPORT_ON
setting.<plugin>_REPORT_ON
let's you specify on which events the app should notify you. This is related to the<plugin>_WATCH
setting. So if you selectwatched-changed
and in<plugin>_WATCH
you only selectWatched_Value1
, then a notification is triggered ifWatched_Value1
is changed from the previous value, but no notification is send ifWatched_Value2
changes.
Click the Read more in the docs. Link at the top of each plugin to get more details on how the given plugin works.
In Notification Processing settings, you can specify blanket rules. These allow you to specify exceptions to the Plugin and Device settings and will override those.
- Notify on (
NTFPRCS_INCLUDED_SECTIONS
) allows you to specify which events trigger notifications. Usual setups will havenew_devices
,down_devices
, and possiblydown_reconnected
set. Includingplugin
(dependenton the Plugin<plugin>_WATCH
and<plugin>_REPORT_ON
settings) andevents
(dependent on the on-device Alert Events setting) might be too noisy for most setups. More info in the NTFPRCS plugin - Alert down after (
NTFPRCS_alert_down_time
) is useful if you want to wait for some time before the system sends out a down notification for a device. This is related to the on-device Alert down setting and only devices with this checked will trigger a down notification. - A filter to allow you to set device-specific exceptions to New devices being added to the app.
- A filter to allow you to set device-specific exceptions to generated Events.
You can completely ignore detected devices globally. This could be because your instance detects docker containers, you want to ignore devices from a specific manufacturer via MAC rules or you want to ignore devices on a specific IP range.
- Ignored MACs (
NEWDEV_ignored_MACs
) - List of MACs to ignore. - Ignored IPs (
NEWDEV_ignored_IPs
) - List of IPs to ignore.