mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
26 lines
804 B
Lua
26 lines
804 B
Lua
--
|
|
-- (C) 2019-20 - ntop.org
|
|
--
|
|
|
|
local alert_keys = require "alert_keys"
|
|
|
|
local function remoteToRemoteFormatter(ifid, alert, info)
|
|
local alert_consts = require "alert_consts"
|
|
|
|
return(i18n("alert_messages.host_remote_to_remote",
|
|
{
|
|
url = hostinfo2detailsurl(hostinfo2hostkey(hostkey2hostinfo(alert.alert_entity_val))),
|
|
flow_alerts_url = ntop.getHttpPrefix() .."/lua/show_alerts.lua?status=historical-flows&alert_type="..alert_consts.alertType("alert_remote_to_remote"),
|
|
ip = info.host,
|
|
mac = get_mac_url(info.mac),
|
|
}))
|
|
end
|
|
|
|
-- #######################################################
|
|
|
|
return {
|
|
alert_key = alert_keys.ntopng.alert_remote_to_remote,
|
|
i18n_title = "alerts_dashboard.remote_to_remote",
|
|
i18n_description = remoteToRemoteFormatter,
|
|
icon = "fas fa-exclamation",
|
|
}
|