Loading...

Drupal watchdog logs

The Drupal watchdog log (drupal-watchdog.log) records Drupal-related actions on your application. The watchdog log is recorded on your infrastructure if you have enabled the syslog module.

For a list of the log files handled by Cloud Platform, including accessing these log files, log file retention, and their locations, see About Cloud Platform logging. You can also review information about how to stream Drupal watchdog log entries in real time from your browser.

 

Parsing the log file

The following line is a representative example of the data written into your website’s Drupal watchdog log:

Aug 18 21:22:01 10.0.0.1 alphabeta: https://www.example.com|1503091321|
custom_module|151.0.0.1|https://example.com/documents||0||Warning: Invalid
argument supplied for foreach() in views_join->build_join
request_id="v-00000000-845b-0000-8178-22000ab832c9"

Each of the items in the Drupal watchdog is noted in the following table, along with its description:

PositionDataDescription
0Aug 18 21:22:01The date and time of the request
110.0.0.1The internal hostname of the infrastructure handling this request. If no hostname exists, the internal IP address will be displayed.
2alphabetaThe internal Acquia website name this request is for
3http://www.example.comThe domain this request was for
41503091321The Unix timestamp of the request
5custom_moduleThe name of the module issuing this message
6151.0.0.1The originating IP address of this request
7https://example.com/documentsThe full URL of the requested page.
8(blank)The referrer for this request (the example line is blank for this value)
90The Drupal user ID initiating the request. 0 means an anonymous user
10(blank)A relevant link, if one was passed to the logging function
11Warning: Invalid argument supplied for foreach() in views_join->build_joinMessage
12request_id="v-00000000-845b-0000-8178-22000ab832c9"A unique ID attached to this request by the load balancer, which appears in several Cloud Platform log files. For more information, see Using HTTP request IDs

If you want to search for a website in drupal-watchdog.log, you can use any of the following commands, which allow you to search log entries for a specific domain name:

  • grep: Allows you to search uncompressed log files
  • zgrep: Allows you to search compressed log files ending in .tar.gz

In Drupal 7, drush vget syslog_format displays information about the ordering and content of fields in the watchdog logs. API documentation about Drupal’s watchdog log is available for Drupal 7.

Did not find what you were looking for?

If this content did not answer your questions, try searching or contacting our support team for further assistance.

Back to Section navigation