-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log first message timestamp at startup
This gives an idea when reading the logs about the state of the loaded data at startup.
- Loading branch information
1 parent
fe1052f
commit e347410
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
|
||
<!-- Reads AIS messages from two different sources. Connecting via TCP. Coverage | ||
data is saved memory only (the default). --> | ||
<aisCoverageConfiguration> | ||
<aisbus> | ||
<transformer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:type="sourceTypeSatTransformerConfiguration"> | ||
<gh_region>802</gh_region> | ||
<gh_region>804</gh_region> | ||
<gh_region>810</gh_region> | ||
<source>CanAISShore</source> | ||
</transformer> | ||
<provider xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:type="tcpClientProviderConfiguration"> | ||
<hostPort>205.193.156.26:9001</hostPort> | ||
</provider> | ||
|
||
<consumer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:type="distributerConsumerConfiguration"> | ||
<name>UNFILTERED</name> | ||
</consumer> | ||
|
||
<busQueueSize>10000</busQueueSize> | ||
</aisbus> | ||
|
||
<!--Sets the grid granularity; the latitude and longitude minimum degree --> | ||
<latSize>0.0225225225</latSize> | ||
<lonSize>0.0386812541</lonSize> | ||
|
||
<databaseConfiguration> | ||
<type>MongoDB</type> | ||
<addr>localhost</addr> | ||
<dbName>classB</dbName> | ||
<port>27017</port> | ||
<persistenceIntervalInMinutes>60</persistenceIntervalInMinutes> | ||
</databaseConfiguration> | ||
|
||
<!--<databaseConfiguration>--> | ||
<!--<type>MemoryOnly</type>--> | ||
<!--</databaseConfiguration>--> | ||
|
||
<!-- Access the frontend via http://localhost:8090/coverage --> | ||
<serverConfiguration> | ||
<port>8090</port> | ||
<webappPath>web</webappPath> | ||
<contextPath>/coverage</contextPath> | ||
</serverConfiguration> | ||
<windowSize>1</windowSize> | ||
</aisCoverageConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters