mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Fix interface RRD overlap between mining category and application
Interface categories are now placed under the ndpi_categories rrd subfolder. Existing data is migrated.
This commit is contained in:
parent
ace94bd786
commit
3e612869a5
5 changed files with 44 additions and 12 deletions
|
|
@ -522,6 +522,11 @@ end
|
|||
-- ##############################################
|
||||
|
||||
function run(tester)
|
||||
if influxdb.db == nil then
|
||||
print("Skipping influx2Series tests. Enable InfluxDB export in order to test.<br/>")
|
||||
return(true)
|
||||
end
|
||||
|
||||
local rv = tester.run_test("influx2Series:test_sampling1", test_sampling1)
|
||||
rv = tester.run_test("influx2Series:test_datafill1", test_datafill1) and rv
|
||||
rv = tester.run_test("influx2Series:test_datafill2", test_datafill2) and rv
|
||||
|
|
|
|||
|
|
@ -90,6 +90,11 @@ end
|
|||
-- ##############################################
|
||||
|
||||
function run(tester)
|
||||
if influxdb.db == nil then
|
||||
print("Skipping influx_query tests. Enable InfluxDB export in order to test.<br/>")
|
||||
return(true)
|
||||
end
|
||||
|
||||
local rv = tester.run_test("influx_query:test_simple_derivative", test_simple_derivative)
|
||||
|
||||
return rv
|
||||
|
|
|
|||
|
|
@ -18,8 +18,7 @@ local prefixes_to_skip = {
|
|||
}
|
||||
|
||||
local suffixes_to_skip = {
|
||||
ndpi_categories = true, -- Collides with nDPI protocol, but we assume that they hold different values
|
||||
l4protos = true, -- Collides with nDPI protocol, but we assume that they hold different values
|
||||
l4protos = true, -- Currently no overlap happens. "icmp" is the l4 protocol, "ICMP" is the l7 application
|
||||
}
|
||||
|
||||
-- ##############################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue