mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Implements flow callbacks and alerts in C++
This commit is contained in:
parent
3659188002
commit
aea9138bfb
353 changed files with 10790 additions and 4455 deletions
|
|
@ -7,7 +7,6 @@
|
|||
local alert_keys = require "alert_keys"
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
local status_keys = require "status_keys"
|
||||
-- Import the classes library.
|
||||
local classes = require "classes"
|
||||
-- Make sure to import the Superclass!
|
||||
|
|
@ -20,7 +19,6 @@ local alert_udp_unidirectional = classes.class(alert)
|
|||
-- ##############################################
|
||||
|
||||
alert_udp_unidirectional.meta = {
|
||||
status_key = status_keys.ntopng.status_udp_unidirectional,
|
||||
alert_key = alert_keys.ntopng.alert_udp_unidirectional,
|
||||
i18n_title = "flow_details.udp_unidirectional",
|
||||
icon = "fas fa-info-circle",
|
||||
|
|
@ -33,8 +31,6 @@ alert_udp_unidirectional.meta = {
|
|||
function alert_udp_unidirectional:init()
|
||||
-- Call the parent constructor
|
||||
self.super:init()
|
||||
|
||||
self.alert_type_params = {}
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue