fixed several netflow bugs

This commit is contained in:
alejandro.campos@artica.es 2022-03-21 13:24:23 +01:00
parent 1a030bcd42
commit 065617a67a
1 changed files with 6 additions and 7 deletions

View File

@ -1510,26 +1510,25 @@ function netflow_get_item_data(
switch ($type_netflow) {
case 'netflow_top_N':
/*
$data_summary = netflow_get_summary(
$data_summary = netflow_get_summary(
$start_date,
$end_date,
$filter,
$connection_name
);
);
$data_top_n = netflow_get_top_N(
$data_top_n = netflow_get_top_N(
$start_date,
$end_date,
$filter,
$max_aggregates,
$connection_name
);
);
$data = [
$data = [
'summary' => $data_summary,
'top_n' => $data_top_n,
];*/
];
break;
case 'netflow_summary':