How do I set up PHP Logging to go to a remote server?

前端 未结 2 837
借酒劲吻你
借酒劲吻你 2020-12-07 03:16

We are going to a deployment setup where we will have many servers, most of which auto-added to the load balancer when the traffic goes up. The trouble with this setup is th

相关标签:
2条回答
  • 2020-12-07 03:32

    The answer from @MichelFeldheim was the genesis, but we improved upon it to handle multiple applications writing to multiple log files.


    Central Logging Server

    In the central logging server, install syslog-ng and configure it thus:

    sudo apt-get install syslog-ng
    

    add the following to /etc/syslog-ng/syslog-ng.conf:

    destination d_php { file("$PROGRAM" owner(www-data) group(www-data) perm(0644)); };
    filter f_php { program("^\/var\/log\/"); };
    log { source(s_all); filter(f_php); destination(d_php); flags(final); };
    
    source s_all {
            # ....
            # .... LET THE PREVIOUS CONTENT STAY - add the following line
            tcp(port(5140) keep_alive(yes));
    };
    

    restart syslog service:

    sudo service syslog-ng restart
    

    On FE Servers

    On each of the FE Servers, install syslog-ng and configure it thus:

    sudo apt-get install syslog-ng
    

    add the following to /etc/syslog-ng/syslog-ng.conf on each of the FE servers:

    destination php { tcp("log.example.com" port(5140)); };
    log { source(s_all); filter(f_php); destination(php); };
    filter f_php { facility(user); };
    

    restart syslog servers:

    sudo service syslog-ng restart
    

    Application Code Changes:

    Now, the application code can be changed thus. Suppose each of the application have code like this writing to a separate file and you want the same structure to be reflected in the central log server:

    // PREVIOUS CODE: using PEAR Log
    include '/usr/share/php/Log.php';
    $log = Log::singleton('file', '/var/log/nginx/xxx.log', '', array(), PEAR_LOG_INFO);
    // PREVIOUS CODE: Using error_log
    ini_set('error_log' , '/var/log/nginx/xxx.log');
    

    The new code should look like:

    // NEW CODE: using PEAR Log
    include '/usr/share/php/Log.php';
    $log = Log::singleton('syslog', LOG_USER, '/var/log/nginx/xxx.log', array(), PEAR_LOG_INFO);
    // NEW CODE: Using error_log
    ini_set(‘error_log’, ‘syslog’);
    openlog('/var/log/nginx/xxx.log', LOG_NDELAY, LOG_USER);
    

    If your FE servers and the Logging servers are all within the same EC2 security group, then there is no need to open the ports, since within the groups, all ports can be accessed freely, so long as a service is listening to it.

    This approach allows your each of your apps, modules to decide whether they want central logging or not.

    0 讨论(0)
  • 2020-12-07 03:38

    What you could do is to log into a custom syslog channel which writes into a central logging server.

    php.ini

    error_log = syslog
    

    syslog-ng.conf on the php boxes

    destination php { tcp("10.10.10.10" port(5140)); };
    log { source(src); filter(f_php); destination(php); };
    

    This would send all php logging to a box 10.10.10.10 where syslog-ng is listening on port 5140.

    On your logging box you have to open the port 5140 in the ec2 security group

    Here's a good tutorial on how to setup a syslog server

    http://praxis.edoceo.com/howto/syslog-ng

    EDIT: This of course would also make it possible to log other important log sources of your php boxes to the log server as well.. Thinking of traffic logs, system logs etc. etc.

    0 讨论(0)
提交回复
热议问题