mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Add support for InfluxDB authentication
This commit is contained in:
parent
165329947b
commit
d4ea15619f
15 changed files with 237 additions and 169 deletions
|
|
@ -1019,6 +1019,7 @@ local known_parameters = {
|
|||
["toggle_pool_activation_alert"] = validateBool,
|
||||
["toggle_quota_exceeded_alert"] = validateBool,
|
||||
["toggle_external_alerts"] = validateBool,
|
||||
["toggle_influx_auth"] = validateBool,
|
||||
|
||||
-- Input fields
|
||||
["minute_top_talkers_retention"] = validateNumber,
|
||||
|
|
@ -1064,6 +1065,8 @@ local known_parameters = {
|
|||
["email_recipient"] = validateSingleWord,
|
||||
["smtp_server"] = validateSingleWord,
|
||||
["influx_dbname"] = validateSingleWord,
|
||||
["influx_username"] = validateEmptyOr(validateSingleWord),
|
||||
["influx_password"] = validateEmptyOr(validateSingleWord),
|
||||
|
||||
-- Multiple Choice
|
||||
["disaggregation_criterion"] = validateChoiceInline({"none", "vlan", "probe_ip", "iface_idx", "ingress_iface_idx", "ingress_vrf_id"}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue