Fluere is a powerful and versatile tool designed for network monitoring and analysis. It is capable of capturing network packets in pcap format and converting them into NetFlow data, providing a comprehensive view of network traffic. It also Provides Terminal User Interface.
Regarding the flow timeout logic, it may take over 5 minutes to execute when paired with a very slow plugin, causing a critical blockage for real-time monitoring. Therefore, while addressing the primary issue of the plugin not being executed on a separate thread, it is also essential to optimize the overall data structure. Currently, the flow uses HashMap and Vector, which need to be replaced with more suitable alternatives.
[x] fix the plugin code to be executed in a separated thread
Regarding the flow timeout logic, it may take over 5 minutes to execute when paired with a very slow plugin, causing a critical blockage for real-time monitoring. Therefore, while addressing the primary issue of the plugin not being executed on a separate thread, it is also essential to optimize the overall data structure. Currently, the flow uses
HashMap
andVector
, which need to be replaced with more suitable alternatives.