Log entries on the Drupal request log are written at the end of the request and look like this:
[21/Apr/2016:21:50:20 +0000] mysite.devcloud.acquia-sites.com GET /info.php query= uid=0 php_pid=5 php_time=0.000 queue_wait=0.000 request_id="abcdef123456"
A log entry includes the following:
uid - The Drupal uid that made the request (more specifically, the global $user->uid when the request completes).php_pid - The Unix processid that ran the request.php_time - The time spent in PHP processing the request, in seconds.queue_wait - The time this PHP request spent waiting for a PHP process to execute it, in seconds. When requests are being queued for a long time, it indicates that there are not enough PHP processes available for the application (glossary term, activate to view definition). Currently, digits after the decimal point are not significant and should be ignored.request_id - An HTTP request ID assigned by Cloud Platform. See Using HTTP request IDs for details.If this content did not answer your questions, try searching or contacting our support team for further assistance.
Log entries on the Drupal request log are written at the end of the request and look like this:
[21/Apr/2016:21:50:20 +0000] mysite.devcloud.acquia-sites.com GET /info.php query= uid=0 php_pid=5 php_time=0.000 queue_wait=0.000 request_id="abcdef123456"
A log entry includes the following:
uid - The Drupal uid that made the request (more specifically, the global $user->uid when the request completes).php_pid - The Unix processid that ran the request.php_time - The time spent in PHP processing the request, in seconds.queue_wait - The time this PHP request spent waiting for a PHP process to execute it, in seconds. When requests are being queued for a long time, it indicates that there are not enough PHP processes available for the application (glossary term, activate to view definition). Currently, digits after the decimal point are not significant and should be ignored.request_id - An HTTP request ID assigned by Cloud Platform. See Using HTTP request IDs for details.If this content did not answer your questions, try searching or contacting our support team for further assistance.