Cloud Foundry Logging
Page last updated: December 24, 2015
This section contains information for debugging Cloud Foundry system components.
Component Logging
The Cloud Foundry components share a common interface for configuring logs. For more information, see the READMEs for the DEA, the Cloud Controller, or for Steno, the logging library that these components use.
In cf-release
, the components are all configured in a similar way:
- All of the job’s log files are located in the directory
/var/vcap/sys/log
of the machine on which the job is running. - The job’s main logs are written to a file named
<job-name>.log
. - Any output written directly to the job’s stdout and stderr is written to
<job-name>.stdout.log
and<job-name>.stderr.log
, respectively.
Database Migrations
For the Cloud Controller, database migration logs are written to db_migrate.stdout.log
and db_migrate.stderr.log
in the same directory.
Log Forwarding
Each BOSH job in cf-release
includes a job named metron_agent
. Metron itself acts as a forwarding agent for Doppler within the Loggregator metric system, but it also includes a template for configuring the rsyslogd
daemon to forward logs to a remote machine. The relevant manifest properties are:
syslog_daemon_config.address
: the IP address (or DNS name) of a remote system that should receive component logs from this VMsyslog_daemon_config.port
: the port on which the log recipient is listeningsyslog_daemon_config.transport
: the protocol over which logs should be sent (one oftcp
,udp
orrelp
); defaults totcp
For example, to use UDP as the syslog transport, the manifest is similar to the following:
yaml
properties:
syslog_daemon_config:
address: address.of.your.syslog.receiver
port: 54321
transport: udp
Cloud Foundry no longer provides a component in cf-release
for aggregating syslog messages from Cloud Foundry components.