mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Added per minute netflow timeseries (#8580)
This commit is contained in:
parent
29f989ba30
commit
48764ff843
12 changed files with 182 additions and 62 deletions
|
|
@ -1639,9 +1639,18 @@ if auth.has_capability(auth.capabilities.preferences) then
|
|||
field = "toggle_flow_rrds",
|
||||
default = "0",
|
||||
pref = "flow_device_port_rrd_creation",
|
||||
disabled = not info["version.enterprise_edition"]
|
||||
disabled = not info["version.enterprise_edition"],
|
||||
to_switch = {"row_exporters_ts_resolution"}
|
||||
})
|
||||
|
||||
local resolutions_labels = {"1m", "5m"}
|
||||
local resolutions_values = {"60", "300"}
|
||||
|
||||
multipleTableButtonPrefs(subpage_active.entries["toggle_flow_rrds_resolution"].title,
|
||||
subpage_active.entries["toggle_flow_rrds_resolution"].description, resolutions_labels,
|
||||
resolutions_values, "300", "primary", "exporters_ts_resolution", "ntopng.prefs.exporters_ts_resolution", nil, nil, nil,
|
||||
nil, areFlowdevTimeseriesEnabled())
|
||||
|
||||
prefsToggleButton(subpage_active, {
|
||||
field = "toggle_interface_usage_probes_timeseries",
|
||||
default = "1",
|
||||
|
|
@ -1871,14 +1880,14 @@ if auth.has_capability(auth.capabilities.preferences) then
|
|||
max = 10
|
||||
})
|
||||
|
||||
if(ntop.isEnterpriseXL()) then
|
||||
prefsToggleButton(subpage_active, {
|
||||
field = "toggle_snmp_trap",
|
||||
default = "0",
|
||||
pref = "toggle_snmp_trap"
|
||||
})
|
||||
end
|
||||
|
||||
if (ntop.isEnterpriseXL()) then
|
||||
prefsToggleButton(subpage_active, {
|
||||
field = "toggle_snmp_trap",
|
||||
default = "0",
|
||||
pref = "toggle_snmp_trap"
|
||||
})
|
||||
end
|
||||
|
||||
prefsToggleButton(subpage_active, {
|
||||
field = "toggle_snmp_debug",
|
||||
default = "0",
|
||||
|
|
@ -2232,7 +2241,7 @@ if auth.has_capability(auth.capabilities.preferences) then
|
|||
pref = "toggle_ntopng_assets_inventory",
|
||||
to_switch = {}
|
||||
})
|
||||
]]
|
||||
]]
|
||||
|
||||
-- Netbox toggle
|
||||
prefsToggleButton(subpage_active, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue