mirror of
https://github.com/unpoller/unpoller.git
synced 2026-04-05 08:54:09 -04:00
Add IDS/IPS support.
This commit is contained in:
@@ -138,6 +138,12 @@ is provided so the application can be easily adapted to any environment.
|
||||
Password used to authenticate with UniFi controller. This can also be
|
||||
set in an environment variable instead of a configuration file.
|
||||
|
||||
collect_ids default: false
|
||||
Setting this parameter to true will enable collection of Intrusion
|
||||
Detection System data. IDS and IPS are the same data set. This is off
|
||||
by default because most controllers do not have this enabled. It also
|
||||
creates a lot of new metrics from controllers with a lot of IDS entries.
|
||||
|
||||
verify_ssl default: false
|
||||
If your UniFi controller has a valid SSL certificate, you can enable
|
||||
this option to validate it. Otherwise, any SSL certificate is valid.
|
||||
|
||||
@@ -50,6 +50,10 @@
|
||||
unifi_pass = "4BB9345C-2341-48D7-99F5-E01B583FF77F"
|
||||
#unifi_url = "https://127.0.0.1:8443"
|
||||
|
||||
# Enable collection of Intrusion Detection System Data.
|
||||
# Only useful if IDS or IPS are enabled on one of the sites.
|
||||
#collect_ids = false
|
||||
|
||||
# If your UniFi controller has a valid SSL certificate, you can enable
|
||||
# this option to validate it. Otherwise, any SSL certificate is valid.
|
||||
# If you don't know if you have a valid SSL cert, then you don't have one.
|
||||
|
||||
@@ -12,5 +12,6 @@
|
||||
"unifi_user": "influxdb",
|
||||
"unifi_pass": "",
|
||||
"unifi_url": "https://127.0.0.1:8443",
|
||||
"collect_ids": false,
|
||||
"verify_ssl": false
|
||||
}
|
||||
|
||||
@@ -72,6 +72,11 @@
|
||||
<unifi_pass></unifi_pass>
|
||||
<unifi_url>https://127.0.0.1:8443</unifi_url>
|
||||
<!--
|
||||
# Enable collection of Intrusion Detection System Data.
|
||||
# Only useful if IDS or IPS are enabled on one of the sites.
|
||||
-->
|
||||
<collect_ids>false</collect_ids>
|
||||
<!--
|
||||
# If your UniFi controller has a valid SSL certificate, you can enable
|
||||
# this option to validate it. Otherwise, any SSL certificate is valid.
|
||||
-->
|
||||
|
||||
@@ -50,6 +50,10 @@ unifi_user: "influxdb"
|
||||
unifi_pass: ""
|
||||
unifi_url: "https://127.0.0.1:8443"
|
||||
|
||||
# Enable collection of Intrusion Detection System Data.
|
||||
# Only useful if IDS or IPS are enabled on one of the sites.
|
||||
collect_ids: false
|
||||
|
||||
# If your UniFi controller has a valid SSL certificate, you can enable
|
||||
# this option to validate it. Otherwise, any SSL certificate is valid.
|
||||
verify_ssl: false
|
||||
|
||||
Reference in New Issue
Block a user