Logo

Command Palette

Search for a command to run...

Setting up custom LiveLog files

Overview

Live Logs is Cloud 66's real-time logging interface. It allows you to monitor your app via the Cloud 66 Dashboard. You can set up custom Live Logs via your Manifest file.

Defining custom Live Logs

All log paths specified must exist on the server before the logs will work, so you must create the directories manually where needed.

You can have multiple custom logs defined for different server roles. For instance the example below to add custom logs to all Docker servers and two sets of custom logs for all MySQL servers (on the same application):

production:
    docker:
        configuration:
            custom_log_files: ["/tmp/dockerlogs/*/*.log"]
    mysql:
        configuration:
            custom_log_files:
            - "/another_mysql_dump_log/*.log"
            - "/var/log/mysql/error.log"