mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
* Add lowerbound and percentage threshold on host rules. (#6855) * Add interface rules. (#6855) * Added ability to blacklist hosts via Lua API * Not supposed to be committed * Method signature change to be called it also from a lua host script * Fix empty string heck * Add param check * Add example listing alerts * Fix params check * Fix alert raw queris * Removed debug code * MacOS changes * Updated (C) * Warning fixes * Removed sprintf calls * Added rx_only_hosts classification * https://github.com/ntop/ntopng/issues/7233; extend datatable component to allow external vue components in table menu bar * Update dist: https://github.com/ntop/ntopng/issues/7233; extend datatable component to allow external vue components in table menu bar * Remove obsoleted comment * Minor GUI fix. (#6855) * Fix on alert format. (#6855) * Minor fix. (#6855) * Update doc. (#6855) --------- Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com> Co-authored-by: Luca Deri <deri@ntop.org> Co-authored-by: Alfredo Cardigliano <cardigliano@ntop.org> Co-authored-by: uccidibuti <vannucci@ntop.org>
This commit is contained in:
parent
9618eee614
commit
cf8a89a7e1
15 changed files with 389 additions and 164 deletions
|
|
@ -292,15 +292,6 @@ else
|
|||
{
|
||||
entry = page_utils.menu_entries.http_servers,
|
||||
url = '/lua/http_servers_stats.lua',
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.divider,
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.host_rules,
|
||||
url = '/lua/pro/host_rules.lua',
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
@ -374,19 +365,24 @@ page_utils.add_menubar_section({
|
|||
page_utils.add_menubar_section({
|
||||
section = page_utils.menu_sections.if_stats,
|
||||
entries = {
|
||||
{
|
||||
entry = page_utils.menu_entries.interface,
|
||||
url = "/lua/if_stats.lua",
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.divider,
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.ports_analysis,
|
||||
url = '/lua/pro/enterprise/ports_analysis.lua',
|
||||
}
|
||||
{
|
||||
entry = page_utils.menu_entries.interface,
|
||||
url = "/lua/if_stats.lua",
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.divider,
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.ports_analysis,
|
||||
url = '/lua/pro/enterprise/ports_analysis.lua',
|
||||
},
|
||||
{
|
||||
hidden = not ntop.isEnterprise() or not isAdministrator(),
|
||||
entry = page_utils.menu_entries.host_rules,
|
||||
url = '/lua/pro/host_rules.lua',
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue