mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-19 07:43:01 +00:00
parent
0837bf1b20
commit
a809933ebd
4 changed files with 18 additions and 6 deletions
|
|
@ -878,7 +878,15 @@ void NetworkInterface::dumpAggregatedFlow(AggregatedFlow *f) {
|
|||
f->print(buf, sizeof(buf)));
|
||||
#endif
|
||||
|
||||
db->dumpAggregatedFlow(f);
|
||||
if(!ntop->getPrefs()->is_tiny_flows_export_enabled() && f->isTiny()) {
|
||||
#ifdef DUMP_AGGREGATED_FLOW_DEBUG
|
||||
ntop->getTrace()->traceEvent(TRACE_NORMAL,
|
||||
"Skipping tiny aggregated flow [flow: %s]",
|
||||
f->print(buf, sizeof(buf)));
|
||||
#endif
|
||||
} else {
|
||||
db->dumpAggregatedFlow(f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue