mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
120 lines
2.7 KiB
Lua
120 lines
2.7 KiB
Lua
--
|
|
-- (C) 2021 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/timeseries/?.lua;" .. package.path
|
|
|
|
local ts_utils = require "ts_utils_core"
|
|
local schema
|
|
|
|
schema = ts_utils.newSchema("am_host:val_hour", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
aggregation_function = ts_utils.aggregation.max,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addTag("host")
|
|
schema:addTag("metric")
|
|
schema:addMetric("value")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_host:http_stats_hour", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
aggregation_function = ts_utils.aggregation.max,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addTag("host")
|
|
schema:addTag("metric")
|
|
schema:addMetric("lookup_ms")
|
|
schema:addMetric("other_ms")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_host:https_stats_hour", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
aggregation_function = ts_utils.aggregation.max,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addTag("host")
|
|
schema:addTag("metric")
|
|
schema:addMetric("lookup_ms")
|
|
schema:addMetric("connect_ms")
|
|
schema:addMetric("other_ms")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_host:upload_hour", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addTag("host")
|
|
schema:addMetric("speed")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_host:latency_hour", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addTag("host")
|
|
schema:addMetric("latency")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_vuln_scan:num_hosts_scanned", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addMetric("num_hosts_scanned")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_vuln_scan:num_configured_hosts", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addMetric("num_hosts")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_vuln_scan:num_open_ports", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addMetric("num_open_ports")
|
|
|
|
-- ##############################################
|
|
|
|
schema = ts_utils.newSchema("am_vuln_scan:num_cve", {
|
|
step = 3600,
|
|
metrics_type = ts_utils.metrics.gauge,
|
|
is_system_schema = true,
|
|
})
|
|
|
|
schema:addTag("ifid")
|
|
schema:addMetric("num_cve")
|