mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Implements Flow Status and DSCP filter in nindex
This commit is contained in:
parent
6da5e79787
commit
ddd366e429
2 changed files with 5 additions and 1 deletions
|
|
@ -1360,6 +1360,8 @@ local known_parameters = {
|
|||
["srv_port"] = validateFilters(validatePort), --Server port
|
||||
["tot_pkts"] = validateFilters(validateNumber), --Total packtes, used by nindex query
|
||||
["tot_bytes"] = validateFilters(validateNumber), --Total bytes, used by nindex query
|
||||
["src2dst_dscp"] = validateEmptyOr(validateFilters(validateUnquoted)), --Client DSCP, used by nindex query
|
||||
["flow_status_num"] = validateEmptyOr(validateFilters(validateUnquoted)), --Flow Status, used by nindex query
|
||||
["vhost"] = validateHTTPHost, -- HTTP server name or IP address
|
||||
["version"] = validateIpVersion, -- To specify an IPv4 or IPv6
|
||||
["vlan"] = validateEmptyOr(validateNumber), -- A VLAN id
|
||||
|
|
@ -1491,7 +1493,7 @@ local known_parameters = {
|
|||
["stats_type"] = validateStatsType, -- A mode for historical stats queries
|
||||
["alertstats_type"] = validateAlertStatsType, -- A mode for alerts stats queries
|
||||
["flowhosts_type"] = validateFlowHostsType, -- A filter for local/remote hosts in each of the two directions
|
||||
["status"] = validateAlertStatus, -- An alert type to filter
|
||||
["status"] = validateUnquoted, -- An alert type to filter
|
||||
["enabled_status"] = validateSingleWord, -- Can be: All, Enabled, Disabled
|
||||
["hash_table"] = validateSingleWord, -- An internal ntopng hash_table
|
||||
["periodic_script"] = validateSingleWord, -- A script under callbacks/interface executed by ntopng
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue