Determine how the timeseries should be routed for further transformation.
This project contains JUnit tests. Maven can be used to run them (in addition to the capabilities of your IDE).
A named Docker Network is needed to run the automated tests via maven. The following is a sample command for creating your own local network. In this example the name is aqts and the ip addresses will be 172.25.0.x
docker network create --subnet=172.25.0.0/16 aqts
To run the unit tests of the application use:
mvn package
To additionally start up a Docker database and run the integration tests of the application use:
mvn verify -DTESTING_DATABASE_PORT=5437 -DTESTING_DATABASE_ADDRESS=localhost -DTESTING_DATABASE_NETWORK=aqts -DROOT_LOG_LEVEL=INFO
TBD