...
Info |
---|
A special scenario: When you reuse an IP address from a Node or WebRTC Gateway, the SSH connection will fail because their fingerprint will have changed. As a result, you will be warned of a possible security failure (a connection against a known host is expected, but instead the found host is another). You can see an error in the trace logs of Presence OpenGate web services. To fix this problem, connect to this module and clear the entry which causes this conflict in the |
2. Traces
By default containers write their traces to the standard I/O Streams that every process opens on Linux, then a logging driver stores every message sent to those streams. By default we use the json-file logging driver so traces can be queried with the docker logs
command.
If you wish to export all tracing from the previous day: docker compose logs -t --since 48h --until 24h | gzip -c > yesterdaylogs.gz
(adjust 48h / 24h to the time range you need).
If you want to see real-time traces for all services: docker compose logs -t --since 1m 0m --follow
.
If you want only for a service: docker logs -t --since 1m 0m --follow asterisk_og
(where asterisk_og is the desired container).
...