mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Added labels to behavior timeseries (#5552)
This commit is contained in:
parent
ded8923775
commit
37096ab179
5 changed files with 18 additions and 14 deletions
|
|
@ -1085,10 +1085,10 @@ local default_timeseries = {
|
|||
if ntop.isPro() then
|
||||
local pro_timeseries = {
|
||||
{schema="iface:score_anomalies", label=i18n("graphs.iface_score_anomalies")},
|
||||
{schema="iface:score_behavior", label=i18n("graphs.iface_score_behavior"), split_directions = true --[[ split RX and TX directions ]]},
|
||||
{schema="iface:score_behavior", label=i18n("graphs.iface_score_behavior"), split_directions = true --[[ split RX and TX directions ]], metrics_labels = {i18n("graphs.score"), i18n("graphs.lower_bound"), i18n("graphs.upper_bound")}},
|
||||
{schema="iface:traffic_anomalies", label=i18n("graphs.iface_traffic_anomalies")},
|
||||
{schema="iface:traffic_rx_behavior", label=i18n("graphs.iface_traffic_rx_behavior"), split_directions = true --[[ split RX and TX directions ]], value_formatter = {"fbits"}},
|
||||
{schema="iface:traffic_tx_behavior", label=i18n("graphs.iface_traffic_tx_behavior"), split_directions = true --[[ split RX and TX directions ]], value_formatter = {"fbits"}},
|
||||
{schema="iface:traffic_rx_behavior", label=i18n("graphs.iface_traffic_rx_behavior"), split_directions = true --[[ split RX and TX directions ]], value_formatter = {"fbits"}, metrics_labels = {i18n("graphs.traffic_rcvd"), i18n("graphs.lower_bound"), i18n("graphs.upper_bound")}},
|
||||
{schema="iface:traffic_tx_behavior", label=i18n("graphs.iface_traffic_tx_behavior"), split_directions = true --[[ split RX and TX directions ]], value_formatter = {"fbits"}, metrics_labels = {i18n("graphs.traffic_sent"), i18n("graphs.lower_bound"), i18n("graphs.upper_bound")}},
|
||||
}
|
||||
|
||||
default_timeseries = table.merge(pro_timeseries, default_timeseries)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue