π Plugins
NetAlertX supports additional plugins to extend its functionality, each with its own settings and options. Plugins can be loaded via the General -> LOADED_PLUGINS
setting. For custom plugin development, refer to the Plugin development guide.
Note
Please check this Plugins debugging guide and the corresponding Plugin documentation in the below table if you are facing issues.
β‘ Quick start
Tip
You can load additional Plugins via the General -> LOADED_PLUGINS
setting.
- Pick your
π dev scanner
plugin (e.g.ARPSCAN
orNMAPDEV
), or import devices into the application with anπ₯ importer
plugin. (See β Enabling plugins below) - Pick a
βΆοΈ publisher
plugin, if you want to send notifications. If you don't see a publisher you'd like to use, look at the π_publisher_apprise plugin which is a proxy for over 80 notification services. - Setup your Network topology diagram
- Fine-tune Notifications
- Backup your setup
- Contribute and Create custom plugins
π Available Plugins
Device-detecting plugins insert values into the CurrentScan
database table. The plugins that are not required are safe to ignore, however, it makes sense to have at least some device-detecting plugins enabled, such as ARPSCAN
or NMAPDEV
.
ID | Type | Description | Features | Required | Data source | Detailed docs |
---|---|---|---|---|---|---|
APPRISE |
βΆοΈ | Apprise notification proxy | Script | _publisher_apprise | ||
ARPSCAN |
π | ARP-scan on current network | Script | arp_scan | ||
AVAHISCAN |
π | Avahi (mDNS-based) name resolution | Script | avahi_scan | ||
ASUSWRT |
π | Import connected devices from AsusWRT | Script | asuswrt_import | ||
CSVBCKP |
β | CSV devices backup | Script | csv_backup | ||
CUSTPROP |
β | Managing custom device properties values | Yes | Template | custom_props | |
DBCLNP |
β | Database cleanup | Yes* | Script | db_cleanup | |
DDNS |
β | DDNS update | Script | ddns_update | ||
DHCPLSS |
π/π₯/π | Import devices from DHCP leases | Script | dhcp_leases | ||
DHCPSRVS |
β» | DHCP servers | Script | dhcp_servers | ||
FREEBOX |
π/β»/π | Pull data and names from Freebox/Iliadbox | Script | freebox | ||
ICMP |
π | ICMP (ping) status checker | Script | icmp_scan | ||
INTRNT |
π | Internet IP scanner | Script | internet_ip | ||
INTRSPD |
β» | Internet speed test | Script | internet_speedtest | ||
IPNEIGH |
π | Scan ARP (IPv4) and NDP (IPv6) tables | Script | ipneigh | ||
LUCIRPC |
π | Import connected devices from OpenWRT | Script | luci_import | ||
MAINT |
β | Maintenance of logs, etc. | Script | maintenance | ||
MQTT |
βΆοΈ | MQTT for synching to Home Assistant | Script | _publisher_mqtt | ||
NBTSCAN |
π | Nbtscan (NetBIOS-based) name resolution | Script | nbtscan_scan | ||
NEWDEV |
β | New device template | Yes | Template | newdev_template | |
NMAP |
β» | Nmap port scanning & discovery | Script | nmap_scan | ||
NMAPDEV |
π | Nmap dev scan on current network | Script | nmap_dev_scan | ||
NSLOOKUP |
π | NSLookup (DNS-based) name resolution | Script | nslookup_scan | ||
NTFPRCS |
β | Notification processing | Yes | Template | notification_processing | |
NTFY |
βΆοΈ | NTFY notifications | Script | _publisher_ntfy | ||
OMDSDN |
π₯/π | OMADA TP-Link import | π§ π | Script | omada_sdn_imp | |
PIHOLE |
π/π/π₯ | Pi-hole device import & sync | SQLite DB | pihole_scan | ||
PUSHSAFER |
βΆοΈ | Pushsafer notifications | Script | _publisher_pushsafer | ||
PUSHOVER |
βΆοΈ | Pushover notifications | Script | _publisher_pushover | ||
SETPWD |
β | Set password | Yes | Template | set_password | |
SMTP |
βΆοΈ | Email notifications | Script | _publisher_email | ||
SNMPDSC |
π/π₯ | SNMP device import & sync | Script | snmp_discovery | ||
SYNC |
π/β/π₯ | Sync & import from NetAlertX instances | π§ π | Yes | Script | sync |
TELEGRAM |
βΆοΈ | Telegram notifications | Script | _publisher_telegram | ||
UI |
β» | UI specific settings | Yes | Template | ui_settings | |
UNFIMP |
π/π₯/π | UniFi device import & sync | π§ | Script | unifi_import | |
VNDRPDT |
β | Vendor database update | Script | vendor_update | ||
WEBHOOK |
βΆοΈ | Webhook notifications | Script | _publisher_webhook | ||
WEBMON |
β» | Website down monitoring | Script | website_monitor | ||
WOL |
β» | Automatic wake-on-lan | Script | wake_on_lan |
* The database cleanup plugin (
DBCLNP
) is not required but the app will become unusable after a while if not executed. β marked for removal βIt's recommended to use the same schedule interval for all plugins responsible for discovering new devices.
Plugin types
Plugin type | Icon | Description | When to run | Required | Data source ? |
---|---|---|---|---|---|
publisher | βΆοΈ | Sending notifications to services. | on_notification |
β | Script |
dev scanner | π | Create devices in the app, manages online/offline device status. | schedule |
β | Script / SQLite DB |
name discovery | π | Discovers names of devices via various protocols. | before_name_updates , schedule |
β | Script |
importer | π₯ | Importing devices from another service. | schedule |
β | Script / SQLite DB |
system | β | Providing core system functionality. | schedule / always on |
β/β | Script / Template |
other | β» | Other plugins | misc | β | Script / Template |
Features
Icon | Description |
---|---|
π§ | Auto-imports the network topology diagram |
π | Has the option to sync some data back into the plugin source |
β Enabling plugins
Plugins can be enabled via Settings, and can be disabled as needed.
- Research which plugin you'd like to use, enable
DISCOVER_PLUGINS
and load the required plugins in Settings via theLOADED_PLUGINS
setting. - Save the changes and review the Settings of the newly loaded plugins.
- Change the
<prefix>_RUN
Setting to the recommended or custom value as per the documentation of the given setting- If using
schedule
on aπ dev scanner
plugin, make sure the schedules are the same across allπ dev scanner
plugins
- If using
Disabling, Unloading and Ignoring plugins
- Change the
<prefix>_RUN
Setting todisabled
if you want to disable the plugin, but keep the settings - If you want to speed up the application, you can unload the plugin by unselecting it in the
LOADED_PLUGINS
setting.- Careful, once you save the Settings Unloaded plugin settings will be lost (old
app.conf
files are kept in the/config
folder)
- Careful, once you save the Settings Unloaded plugin settings will be lost (old
- You can completely ignore plugins by placing a
ignore_plugin
file into the plugin directory. Ignored plugins won't show up in theLOADED_PLUGINS
setting.
π Developing new custom plugins
If you want to develop a custom plugin, please read this Plugin development guide.