-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to see logs in Cloudwatch #9
Comments
Are you running the docker image on AWS's ECS? Please provide detailed instructions so I can re-produce the issue and work on a solution. |
This is run in ECS. We have a container that will launch the docker and do symlinks for Apache log files (/etc/var/log/apache2/access.log and /etc/var/log/apache2/error.log. Here is a sample of what is being launched.
|
I'll investigate this and try to find a permanent solution. Since each line in a Docker Buildfile is saved in a different layer in the file system, I think the best place for anything that should happen in runtime such as your symlinks is in the "run" script (or anything running in CMD). Another possible option is adding a "tail -f &" in the run script . In apache you can also use "Piped Logs" : https://httpd.apache.org/docs/2.4/logs.html A more structured approach would be to use docker log drivers: https://docs.docker.com/config/containers/logging/configure/ |
Can you please provide your application.conf file that's mentioned in your build script so I can re-create your issue? Did my "tail -f" solution help you? Also please note that docker have added a "CloudWatch" log driver. |
Here's my application.conf file.
|
Hi,
Can you please provide me with step by step instructions for reproducing the issue?
How is cloudwatch supposed to see the files inside the container?
I'd suggest attaching a docker volume and saving the log files there.
Additionally consider using docker's built-in cloudwatch driver:
https://docs.docker.com/config/containers/logging/awslogs/
Also I notice you are using a very old version of PHP. Unless your app is incompatible with PHP 7 I'd suggest basing your app on php-zendserver:latest
Best regards,
David Lowes | Sr. Cloud Integration Engineer
Zend, a Rogue Wave company
Accelerating Great Code
P +972.3.753.9560 M +972.54.3000.810
www.zend.com / [email protected]
…________________________________
From: lokeshmure <[email protected]>
Sent: Thursday, July 26, 2018 6:42:44 PM
To: zendtech/php-zendserver-docker
Cc: David Lowes; Mention
Subject: Re: [zendtech/php-zendserver-docker] Unable to see logs in Cloudwatch (#9)
Here's my application.conf file.
`Listen 8080
<IfModule !headers_module>
LoadModule headers_module modules/mod_headers.so
<VirtualHost *:8080>
SetEnv APPLICATION_ENV latest
SetEnv LOG_DIR /var/www/html/logs
DocumentRoot "/var/www/html"
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<IfModule headers_module>
Header set X-Environment "latest"
Header set X-Instance "1"
Header set X-Version "${project.version}"
RequestHeader set ZRAY-DISABLE 1
</IfModule>
<Directory "/var/www/html">
Order allow,deny
Allow from all
AllowOverride all
</Directory>
`
@davidl-zend<https://github.com/davidl-zend>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#9 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AFH5F35J6j1IOXW-e5Kr9xa4VaxvPJy4ks5uKeN0gaJpZM4S84lC>.
|
We are currently having an issue that will not allow us to see any Apache or Zend logs via CloudWatch. It seems by going the default route of starting up the docker it takes over all STDout/err even if we symlink the log files.
Is this a know issue or is there a work around?
The text was updated successfully, but these errors were encountered: