Skip to content
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

Open
eddietorres7373 opened this issue Mar 27, 2018 · 6 comments
Open

Unable to see logs in Cloudwatch #9

eddietorres7373 opened this issue Mar 27, 2018 · 6 comments

Comments

@eddietorres7373
Copy link

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?

@davidl-zend
Copy link
Contributor

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.

@eddietorres7373
Copy link
Author

eddietorres7373 commented Apr 3, 2018

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.

FROM /php54zend70:1.0.0-1.0.0.0
LABEL DESCRIPTION="Docker Image"
LABEL VERSION="1.1.14"

# Passed in arguments
ENV APPLICATION_ENV="latest" \
	ENVIRONMENT=${APPLICATION_ENV:-latest} \
        INSTANCE_NUM="2" \
        PROJECT_VERSION=1.1.14

# Apache Modules - Enable headers and ssl (if local)
RUN a2enmod headers && a2enmod ssl

# Copy application apache port configuration file
COPY docker_config /tmp

# Add Healthcheck
#HEALTHCHECK --interval=5m --timeout=3s CMD curl -f http://localhost/status || exit 1
#HEALTHCHECK --interval=5m --timeout=3s CMD netstat -anp | grep ':80 ' | grep 'LISTEN' || exit 1

# Copy files from Git
COPY src /var/www/html/

# Repoint Zend logs to STDOUT/ERR
RUN mkdir -p /var/www/html/logs \
    && chmod 777 /var/www/html/logs \
    && ln -s /dev/stderr /var/www/html/logs/error.log \
    && ln -s /dev/stdout /var/www/html/logs/standard.log \
    && ln -s /dev/stdout /var/www/html/logs/debug.log \
    && chmod -R 755 /var/www/html/

# Repoint Access/Error logs to STDOUT/ERR
RUN rm -rf /var/log/apache2/* \
    && ln -s /dev/stdout /var/log/apache2/access.log \
    && ln -s /dev/stderr /var/log/apache2/error.log \
    && ln -s /dev/stdout /var/log/apache2/other_vhosts_access.log

# Substitute environment variables
#RUN apt-get install -y gettext-base \
#	&& cp /var/www/html/public/.htaccess /tmp/.htaccess \
#        && envsubst < "/tmp/.htaccess" > "/var/www/html/public/.htaccess"

# Expose port 8080
EXPOSE 8080

# Copy the appropriate apache file and start zend server
CMD cp /tmp/apache-${APPLICATION_ENV}.conf /etc/apache2/sites-enabled/application.conf && /usr/local/bin/run

@davidl-zend
Copy link
Contributor

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/

@davidl-zend
Copy link
Contributor

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.
https://docs.docker.com/config/containers/logging/awslogs/

@lokeshmure
Copy link

lokeshmure commented Jul 26, 2018

Here's my application.conf file.

Listen 8080
<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>
</VirtualHost>

@davidl-zend

@davidl-zend
Copy link
Contributor

davidl-zend commented Jul 30, 2018 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants