Consult Cyberwatch logs
Use the logs command of the cyberwatch binary:
sudo cyberwatch logs [SERVICE] [-f]
For a complete description of the services used by the application, consult the services documentation.
Main services which logs are generally consulted are: web, sidekiq and nginx:
weblogs contain all application logs resulting from users actions, which helps identify potential 500 errors for examplesidekiqlogs contain all logs related to tasks and jobs execution in the applicationnginxlogs contain all requests sent towards the nginx web server in front of the application
Examples
For example, consult the logs of the web container and filter only the errors:
sudo cyberwatch logs web 2>&1 | grep ERROR