mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
Added new time series (#2481)
This commit is contained in:
parent
aa8d228aed
commit
0e785d58f9
3 changed files with 90 additions and 1 deletions
|
|
@ -190,6 +190,49 @@ schema:addMetric("flows_as_server")
|
|||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("host:tcp_pkts_stats", {step = 300})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("retransmission_packets")
|
||||
schema:addMetric("out_of_order_packets")
|
||||
schema:addMetric("lost_packets")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("host:dns_pkts_sent", {step = 300})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("queries_packets")
|
||||
schema:addMetric("replies_ok_packets")
|
||||
schema:addMetric("replies_error_packets")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("host:dns_pkts_rcvd", {step = 300})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("queries_packets")
|
||||
schema:addMetric("replies_ok_packets")
|
||||
schema:addMetric("replies_error_packets")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("host:arp_requests_pkts", {step = 300})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("requests_packets_sent")
|
||||
schema:addMetric("requests_packets_rcvd")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("host:udp_pkts", {step = 300})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("packets_sent")
|
||||
schema:addMetric("packets_rcvd")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("host:total_alerts", {step = 300, rrd_fname = "total_alerts"})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue