When running the topology pcap, enabling or disabling the parser bolt will have no effect. The class
TopologyRunner will ask the configuration for the boolean value of "parser.bolt.enabled" whereas in the configuration file the string "bolt.parser.enabled" is used.
Suggestion: Stick to the strategy in the configuration file. All strings start with the type of the element they are enabling. Change TopologyRunner to ask for "bolt.parser.enabled". The class can be found in OpenSOC-Topologies/src/main/java/com.opensoc.topology.runner.
When running the topology pcap, enabling or disabling the parser bolt will have no effect. The class
TopologyRunner
will ask the configuration for the boolean value of "parser.bolt.enabled" whereas in the configuration file the string "bolt.parser.enabled" is used.Suggestion: Stick to the strategy in the configuration file. All strings start with the type of the element they are enabling. Change
TopologyRunner
to ask for "bolt.parser.enabled". The class can be found in OpenSOC-Topologies/src/main/java/com.opensoc.topology.runner.