Github user nickwallen commented on the issue:
https://github.com/apache/metron/pull/1238
It is a good add, but I think it is a little confusing. I would suggest
that we add this in a new section under "Working with Metron"; something like
"Working with Sensors". It should describes from start-to-finish how to build
an environment with sensors. It might look something like this.
### Working with Sensors
By default, the development environment does not install and run the demo
sensors...yada yada.
1. Launch the development environment.
```
vagrant --ansible-skip-tags="sensor-stubs" up
```
1. Start the sensors.
```
vagrant ssh
sudo su -
service pcap-replay restart
service yaf restart
service snortd restart
service snort-producer restart
```
---