Giter Club home page Giter Club logo

datadog / dd-trace-php Goto Github PK

View Code? Open in Web Editor NEW
466.0 118.0 145.0 171.2 MB

Datadog PHP Clients

Home Page: https://docs.datadoghq.com/tracing/setup/php

License: Other

PHP 88.77% M4 0.01% C 0.69% Dockerfile 0.06% Shell 0.14% Makefile 0.04% HTML 0.71% Hack 0.01% Vue 0.01% Batchfile 0.01% PowerShell 0.01% C++ 0.47% CSS 3.41% JavaScript 3.70% TSQL 0.01% CMake 0.04% DTrace 0.01% Roff 0.03% Blade 0.05% Twig 1.87%
datadog tracing apm opentracing php appsec asm open-telemetry profiling

dd-trace-php's Introduction

DD Trace PHP

CircleCI CodeCov OpenTracing Badge OpenTelemetry Badge Minimum PHP Version License Packagist Version Total Downloads

Getting Started

bits php

The Datadog PHP Tracer (ddtrace) brings APM and distributed tracing to PHP.

Installing the extension

Datadog’s PHP Tracing Library supports many of the most common PHP versions, PHP web frameworks, datastores, libraries, and more. Prior to installation, please check our latest compatibility requirements.

Visit the PHP tracer documentation for complete installation instructions.

Installation from PECL (datadog_trace) or from source

Compilation of the tracer and the profiler requires cargo to be installed. Ensure that cargo is minimum version 1.71.0, otherwise follow the official instructions for installing cargo.

Advanced configuration

For more information about configuring and instrumenting ddtrace, view the configuration documentation.

OpenTracing

The ddtrace package provides an OpenTracing-compatible tracer.

Contributing

Before contributing to this open source project, read our CONTRIBUTING.md.

Security Vulnerabilities

If you have found a security issue, please contact the security team directly at [email protected].

dd-trace-php's People

Contributors

anilm3 avatar brettlangdon avatar bwoebi avatar cataphract avatar cbeauchesne avatar chuck avatar ddyurchenko avatar drowe-wayfair avatar estringana avatar iamluc avatar inverse avatar jcchavezs avatar jstanton617 avatar kevinlebrun avatar krakjoe avatar labbati avatar localheinz avatar mabdinur avatar morrisonlevi avatar nurcahyo avatar pablomartinezbernardo avatar pawelchcki avatar pierotibou avatar profenom avatar radykal-com avatar realflowcontrol avatar remicollet avatar robertomonteromiguel avatar sammyk avatar wconti27 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dd-trace-php's Issues

Internal function tracing with callbacks failing due to private function

This is slightly related to issue #113

It looks like there is a problem with tracing a function that uses callbacks, if that callback is private.
Specifically I am using a PHP S3 class "tpyo/amazon-s3-php-class" which is using the CURLOPT_HEADERFUNCTION feature.
curl_exec will execute the HEADERFUNCTION callback during data transmission.

As the callback is a private function of the S3 class, adding dd_trace to curl_exec throws these errors:

Message: Invalid callback S3Request::__responseHeaderCallback, cannot access private method S3Request::__responseHeaderCallback()
Message: curl_exec(): Could not call the CURLOPT_HEADERFUNCTION

So dd_trace is changing the scope and function visibility when curl_exec is run.

Curiously it doesn't appear to be all callbacks. I tried creating the below test script but it seems to function correctly.

class a
{
        function __construct()
        {
                call_user_func(array($this, 'test'));
        }

        private function test()
        {
                echo "Hello World\n";
        }
}

dd_trace('call_user_func', function ($callback) {
        call_user_func($callback);
});

new a();

Invocation context seems not to be properly passed when invoking traced functions

Tested in the php 7.2 test runner. This is probably a different version of #149

Invocation context seems not to be properly passed when invoking traced functions.

class A
{
    private function private_method()
    {
    }

    public function public_method()
    {
        spl_autoload_register(__CLASS__.'::private_method');
    }
}

dd_trace('spl_autoload_register', function () {
    return call_user_func_array('spl_autoload_register', func_get_args());
});

$a = new A();
$a->public_method();

$n = new \Not\Exist();

Results in

Fatal error: Uncaught LogicException: Function 'A::private_method' not callable (cannot access private method A::private_method()) in /home/circleci/app/playground.php on line 16

LogicException: Function 'A::private_method' not callable (cannot access private method A::private_method()) in /home/circleci/app/playground.php on line 16

Call Stack:
    0.0010     393032   1. {main}() /home/circleci/app/playground.php:0
    0.0010     393752   2. A->public_method() /home/circleci/app/playground.php:20
    0.0010     394072   3. {closure:/home/circleci/app/playground.php:15-17}() /home/circleci/app/playground.php:11
    0.0011     394072   4. spl_autoload_register() /home/circleci/app/playground.php:16

While the expected output is

Fatal error: Uncaught Error: Class 'Not\Exist' not found in /home/circleci/app/playground.php on line 22

Error: Class 'Not\Exist' not found in /home/circleci/app/playground.php on line 22

Call Stack:
    0.0009     393032   1. {main}() /home/circleci/app/playground.php:0

Laravel breaks when application/package uses the pipeline class

So I noticed the Laravel integration "hi-jacks" the Pipeline class to detect / measure the middleware, however... this class is not specific for middleware :)

image

As you can see Lighthouse (a GraphQL package) for example uses the Pipeline quite a bit and at best it will cause some extra middleware that are not middleware... but at worst as in this case it crashed since the handle method is hardcoded in the integration, but on the pipeline its dynamic 😄

I tried to find a good way around it but there is a lot going on in that little L5 service provider and not sure how the dd_trace function works etc. etc.

So leaving this here so it can be figured out 👍

I will disable dd-trace for now (perks of joining them sweet, sweet beta's)

NoopSpan doesn't have additional methods

Integration works fine for web requests but my Laravel workers fail when running artisan queue:work

Symfony\Component\Debug\Exception\FatalThrowableError Call to undefined method OpenTracing\NoopSpan::setResource() 
    vendor/datadog/dd-trace/src/DDTrace/Integrations/PDO/PDOIntegration.php:42 PDO::DDTrace\Integrations\PDO\{closure}
    vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:68 Illuminate\Database\Connectors\Connector::createPdoConnection
    vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:44 Illuminate\Database\Connectors\Connector::createConnection
    vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24 Illuminate\Database\Connectors\MySqlConnector::connect

The problem appears to be the tracer is trying to use NoopSpan which doesn't have the extra methods implemented in DDTrace\Span.

if (!$this->config['enabled']) {
return NoopSpan::create();
}

There probably needs to be a OpenTracing\NoopSpan subclass in DDTrace that implements all the additional methods that have been added.

Temporarily worked around by registering the DDTrace service provider from my AppServiceProvider only when not on CLI.

/**
 * Register any application services.
 *
 * @return void
 */
public function register()
{
    if (extension_loaded('ddtrace') && php_sapi_name() !== 'cli') {
        $this->app->register(\DDTrace\Integrations\LaravelProvider::class);
    }

Support for Zend framework 2.x

I'm having a legacy application that's using Zend framework 2.x and it's not picked up automatically by the automatic application instrumentation. Reading the docs ZF 1.12 is the only supported (so far) version of the framework. Are there any plans to extend the range of the supported versions?

5.6 and ZTS 1 failed test

=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
Configured overrides can be safely reset. [tests/ext/reset_configured_overrides.phpt]
=====================================================================

# cat reset_configured_overrides.diff
005- TRUE
006- METHOD
007- FUNCTION
008- METHOD
009- METHOD HOOK2
010- FUNCTION
011- FUNCTION HOOK2

Guzzle 6 Integration bug

When integrating this into a project that uses guzzle 6.3 I get the following error

Attempted to call an undefined method named "getUrl" of class "GuzzleHttp\\Psr7\\Request".\nDid you mean to call "getUri"? 

I suspect that this was changed to getUri in 6. How would be best to add an integration in for that? Perhaps defining the dependency similar to what is done here for multiple versions of Symfony:

https://pantheon.io/blog/highest-lowest-testing-multiple-symfony-versions

How to integrate with Laravel 5.3

Hi,

I'm trying to integrate this in a Laravel 5.3 application, but I'm confused about how I am supposed to do it.

In previous releases, this package used to have a LaravelProvider class that I had to register in config/app.php. But it cannot work anymore because the DDTrace\Integrations\Laravel\V5\LaravelProvider class does not exist anymore. And I've read that this is deprecated.

If I understood correctly I have to use DDTrace\Integrations\Laravel\LaravelIntegration but I'm confused about how to use it.

Do I have to call

\DDTrace\Integrations\Laravel\LaravelIntegration::load();

in my AppServiceProvider for example?

Integration with Moodle LMS

Hello Developers,

I am using the php based Moodle LMS framework.
I am struggling with adding APM tracing into Moodle

Here is a link to the project's github account:
https://github.com/moodle/moodle/
The main include file is config.php

Can you help and give advise, how to go about adding APM tracing into Moodle?

Kindly,
Nadav

High CPU usage

We're using Magento 1 and I decided to just throw this code into our index.php file as a first stab at seeing some data:

require_once('lib/vendor/autoload.php');
$tracer = new \DDTrace\Tracer(new \DDTrace\Transport\Http(new \DDTrace\Encoders\Json()));
\OpenTracing\GlobalTracer::set($tracer);
$scope = $tracer->startActiveSpan('ourorg.www.request');
$span = $scope->getSpan();
$span->setTag(\DDTrace\Tags\SERVICE_NAME, 'www');
$span->setTag(\DDTrace\Tags\SPAN_TYPE, \DDTrace\Types\WEB_SERVLET);
\DDTrace\Integrations\PDO::load();
register_shutdown_function(function () use ($scope) {
    $scope->close();
    \OpenTracing\GlobalTracer::get()->flush();
});

we got data in the datadog APM UI ... but the webserver slammed to 100% cpu and stopped responding. any suggestions?

PDO integration throws exception when using Propel

Propel wraps PDO with its own class PdoConnection. PdoConnection again wraps some calls like exec() with its own function and returns an object instead of an int (what PDO::exec() returns).

see
https://github.com/propelorm/Propel2/blob/master/src/Propel/Runtime/Connection/PdoConnection.php#L115

Now the DDTrace PDO integration traces calls to PDO::exec() sets the tag db.rowcount to the result of the call. Since the result of PdoConnection::exec() returns an object, this step throws an exception because the value passed to setTag is an object, not an int.

Is it possible for DDTrace to wrap only the calls to PDO::exec, not the one to PdoConnection::exec()?

User extractor - Error when the id is a protected property

We use Doctrine within our Laravel Project, and not eloquent. So we don't expose our object properties, however, the code for extracting users appears to rely on accessing the id property directly, as apposed to going through the \Illuminate\Contracts\Auth\Authenticatable interface, which is required anyway.

You could modify the code in place to the following, and get rid of the try/catch.

$user = auth()->user();
// You probably would want to import the class below
if ($user && $user instanceof \Illuminate\Contracts\Auth\Authenticatable) {
    $span->setTag('laravel.user', strlen($user->getAuthIdentifierName()) > 0 ? $user->getAuthIdentifierName() : '-');
}

Tags env:none

Seems that there is no way to pass the env tag. In APM view I see the env tag set to none. According to docs I tried to set the environment variable DD_TRACE_GLOBAL_TAGS = env:st but it does not effect. Im using last version of library, SF4 and Automatic Instrumentation. Is there some other way to set env tag ?

Support for default tags w/ Laravel Provider?

Is there support for default tags? With the node tracer, for example, you can pass in a tags property into the initialization function. Here there is no initialization function, just the environment variables. We have an env tag that needs to get added to all metrics.
I do see documentation on initializing a tracer with custom tags but the Laravel 5 integration provider creates its own tracer. So I don't have a handle on that. I also considered writing another ServiceProvider to pull the GlobalTracer created by the DD ServiceProvider and update its config, but theres no way of fetching the configs from the tracer object.

PHP 7.3 compatibility

Build fails.

In file included from /opt/remi/php73/root/usr/include/php/Zend/zend.h:29,
                 from /opt/remi/php73/root/usr/include/php/main/php.h:33,
                 from /dev/shm/BUILD/php73-php-pecl-datadog-trace-0.8.1/NTS/src/ext/dispatch_compat_php7.c:1:
/dev/shm/BUILD/php73-php-pecl-datadog-trace-0.8.1/NTS/src/ext/dispatch_compat_php7.c: In function 'ddtrace_dispatch_store':
/dev/shm/BUILD/php73-php-pecl-datadog-trace-0.8.1/NTS/src/ext/dispatch_compat_php7.c:46:91: error: 'HASH_FLAG_PERSISTENT' undeclared (first use in this function); did you mean 'HASH_FLAG_CONSISTENCY'?
     ddtrace_dispatch_t *dispatch = pemalloc(sizeof(ddtrace_dispatch_t), lookup->u.flags & HASH_FLAG_PERSISTENT);
                                                                                           ^~~~~~~~~~~~~~~~~~~~
/opt/remi/php73/root/usr/include/php/Zend/zend_alloc.h:193:38: note: in definition of macro 'pemalloc'
 #define pemalloc(size, persistent) ((persistent)?__zend_malloc(size):emalloc(size))
                                      ^~~~~~~~~~
/dev/shm/BUILD/php73-php-pecl-datadog-trace-0.8.1/NTS/src/ext/dispatch_compat_php7.c:46:91: note: each undeclared identifier is reported only once for each function it appears in
     ddtrace_dispatch_t *dispatch = pemalloc(sizeof(ddtrace_dispatch_t), lookup->u.flags & HASH_FLAG_PERSISTENT);
                                                                                           ^~~~~~~~~~~~~~~~~~~~
/opt/remi/php73/root/usr/include/php/Zend/zend_alloc.h:193:38: note: in definition of macro 'pemalloc'
 #define pemalloc(size, persistent) ((persistent)?__zend_malloc(size):emalloc(size))

Please clarify PHP dependency

PECL changelog states:

  • Initial C extension PHP 5.4 support #205

And build against 7.3 seems ok.

But, in package.xml, still have

  <php>
    <min>5.6</min>
    <max>7.2.99</max>
   </php>

Segfault with PHP 7.3 and Laravel 5.7

Hi,

We are experiencing segfaults with PHP 7.3 (also PHP 7.2) and Laravel 5.7.

Looks similar to #302

Here's the stack trace:

[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: Datadog PHP Trace extension (DEBUG MODE)"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: Received Signal 11"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: Note: Backtrace below might be incomplete and have wrong entries due to optimized runtime"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: Backtrace:"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_backtrace_handler+0x4f) [0x7f81b56fa02b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /lib/x86_64-linux-gnu/libc.so.6(+0x354b0) [0x7f81c60c34b0]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x32f54b) [0x55c76df0d54b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x225b) [0x55c76df17c6b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x335b3c) [0x55c76df13b3c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x158) [0x55c76df15b68]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x335b3c) [0x55c76df13b3c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x158) [0x55c76df15b68]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3332cc) [0x55c76df112cc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x353b) [0x55c76df18f4b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x333a3c) [0x55c76df11a3c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0xd2c) [0x55c76df1673c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d270a) [0x55c76deb070a]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_execute+0x11e) [0x55c76df1dfce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_execute_scripts+0xc3) [0x55c76de6c473]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(php_execute_script+0x2e0) [0x55c76de06e80]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0xdfec9) [0x55c76dcbdec9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf0) [0x7f81c60ae830]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 said into stderr: "NOTICE: PHP message: php-fpm: pool www(_start+0x29) [0x55c76dcbecf9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 329 exited with code 11 after 12.202546 seconds from start
[21-Feb-2019 15:53:21] NOTICE: [pool www] child 337 started
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stdout: "[2019-02-21 15:53:21] staging.INFO: track_js_event.action:server:user-logged-in is checked  "
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: Datadog PHP Trace extension (DEBUG MODE)"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: Received Signal 11"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: Note: Backtrace below might be incomplete and have wrong entries due to optimized runtime"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: Backtrace:"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_backtrace_handler+0x4f) [0x7f81b56fa02b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /lib/x86_64-linux-gnu/libc.so.6(+0x354b0) [0x7f81c60c34b0]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x32f54b) [0x55c76df0d54b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x225b) [0x55c76df17c6b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x335b3c) [0x55c76df13b3c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x158) [0x55c76df15b68]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x335b3c) [0x55c76df13b3c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x158) [0x55c76df15b68]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3332cc) [0x55c76df112cc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x353b) [0x55c76df18f4b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x333a3c) [0x55c76df11a3c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0xd2c) [0x55c76df1673c]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x1b9d81) [0x55c76dd97d81]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2e05) [0x55c76deb0e05]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_call_function+0x742) [0x55c76de5bd72]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x34dc) [0x7f81b56f94dc]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(ddtrace_wrap_fcall+0x2e1) [0x7f81b56f998b]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x3370b9) [0x55c76df150b9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d2cce) [0x55c76deb0cce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0x2d270a) [0x55c76deb070a]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(execute_ex+0x2d12) [0x55c76df18722]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /opt/datadog-php/extensions/ddtrace-20170718-debug.so(+0x2c86) [0x7f81b56f8c86]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_execute+0x11e) [0x55c76df1dfce]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(zend_execute_scripts+0xc3) [0x55c76de6c473]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(php_execute_script+0x2e0) [0x55c76de06e80]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(+0xdfec9) [0x55c76dcbdec9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf0) [0x7f81c60ae830]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 said into stderr: "NOTICE: PHP message: php-fpm: pool www(_start+0x29) [0x55c76dcbecf9]"
[21-Feb-2019 15:53:21] WARNING: [pool www] child 330 exited with code 11 after 12.679050 seconds from start
[21-Feb-2019 15:53:21] NOTICE: [pool www] child 339 started

[info] RPM package

For your information

RPM packages for Fedora / RHEL / CentOS are already available, among some other extensions, in my repository

https://blog.remirepo.net/pages/PECL-extensions-RPM-status

On Fedora (and RHEL-8-beta)

dnf install php-pecl-datadog-trace

On RHEL / CentOS 6 and 7

yum install php-pecl-datadog-trace

Notice: yum install php-ddtrace also works (using extension name)

Available for PHP 5.6, 7.0, 7.1 and 7.2.

Spec file tracked on
https://git.remirepo.net/cgit/rpms/php/pecl/php-pecl-datadog-trace.git/

Post-install fails due to --login flag

Hello,

I've been trying to get this extension working on the bitnami/php-fpm:7.2-debian-9 which supplies PHP in a smaller container, but it fails installation, ostensibly due to the --login flag on the post-install bash script.

The output of the script during installation looks as follows

+ dpkg -i datadog-php-tracer.deb
Selecting previously unselected package datadog-php-tracer.
(Reading database ... 8506 files and directories currently installed.)
Preparing to unpack datadog-php-tracer.deb ...
Unpacking datadog-php-tracer (0.11.0-beta) ...
Setting up datadog-php-tracer (0.11.0-beta) ...
mesg: ttyname failed: Inappropriate ioctl for device
### Installing DataDog PHP tracing extension (ddtrace)
###
### Logging php -i to a file
###
/var/lib/dpkg/info/datadog-php-tracer.postinst: line 84: php: command not found
/var/lib/dpkg/info/datadog-php-tracer.postinst: line 86: php: command not found
/var/lib/dpkg/info/datadog-php-tracer.postinst: line 87: php: command not found
/var/lib/dpkg/info/datadog-php-tracer.postinst: line 89: php: command not found
###
### conf.d folder not found falling back to appending extension config to main "php.ini"
/var/lib/dpkg/info/datadog-php-tracer.postinst: line 102: php: command not found
### Failed enabling ddtrace extension
###
### The extension has been installed and couldn't be enabled
### Try adding the extension manually to your PHP - php.ini - configuration file
### e.g. by adding following line:
###
###     extension=/opt/datadog-php/extensions/ddtrace-.so
###
### Note that your PHP API version must match the extension's API version
### PHP API version can be found using following command
###
###     php -i | grep 'PHP API'
###

But you can reproduce that the php commands in /bin/bash --login do not work with the following:

$ docker run -it bitnami/php-fpm:7.2-debian-9 bash
root@2a524fda4ddf:/app# /bin/bash --login
root@2a524fda4ddf:/app# php --ini
bash: php: command not found
root@2a524fda4ddf:/app# exit
logout
root@2a524fda4ddf:/app# php --ini
Configuration File (php.ini) Path: /opt/bitnami/php/lib
Loaded Configuration File:         /opt/bitnami/php/lib/php.ini
Scan for additional .ini files in: /opt/bitnami/php/etc/conf.d
Additional .ini files parsed:      (none)
root@2a524fda4ddf:/app#

If you run the post-install script in a container post-docker-build without the --login flag it works as intended.

For example with cat /opt/datadog-php/bin/post-install.sh | bash.

I am not sure why it is included at all, I think it would be safe without?

Laravel 5.3 PDO: Undefined variable statement

We're seeing some unusual behaviour since installing dd-trace where occasionally the instance of PDOStatement being used is NULL, this doesn't happen all the time but we're seeing a sizeable number of requests where this is happening. Strange issue I know, here is the trace

ErrorException: Undefined variable: statement in /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php:408
Stack trace:
#0 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(408): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8, 'Undefined varia...', '/home/forge/api...', 408, Array)
#1 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(335): Illuminate\Database\Connection->bindValues(NULL, Array)
#2 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(763): Illuminate\Database\Connection->Illuminate\Database\{closure}(Object(Illuminate\Database\PostgresConnection), 'select * from "...', Array)
#3 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(726): Illuminate\Database\Connection->runQueryCallback('select * from "...', Array, Object(Closure))
#4 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(351): Illuminate\Database\Connection->run('select * from "...', Array, Object(Closure))
#5 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(1648): Illuminate\Database\Connection->select('select * from "...', Array, true)
#6 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(1634): Illuminate\Database\Query\Builder->runSelect()
#7 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(638): Illuminate\Database\Query\Builder->get(Array)
#8 [internal function]: Illuminate\Database\Eloquent\Builder->getModels(Array)
#9 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#10 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Eloquent/EloquentIntegration.php(32): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(Illuminate\Database\Eloquent\Builder), 'getModels', Array)
#11 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(327): Illuminate\Database\Eloquent\Builder->DDTrace\Integrations\Eloquent\{closure}(Array)
#12 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(297): Illuminate\Database\Eloquent\Builder->get(Array)
#13 /path/to/us/app/Models/Domain/UserQueryContext/UserQueryContext.php(36): Illuminate\Database\Eloquent\Builder->first()
#14 /path/to/us/app/Models/Domain/Timeline/UserMessagePayload.php(1858): App\Models\Domain\UserQueryContext\UserQueryContext->getUserById(123456)
#15 /path/to/us/app/Http/Controllers/Vendors/ACME/MessagePayloadController.php(29): App\Models\Domain\Timeline\UserMessagePayload->getLongPayload('ROU_1')
#16 [internal function]: App\Http\Controllers\Vendors\ACME\MessagePayloadController->long('123456', 'ROU_1')
#17 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(55): call_user_func_array(Array, Array)
#18 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(44): Illuminate\Routing\Controller->callAction('long', Array)
#19 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Route.php(189): Illuminate\Routing\ControllerDispatcher->dispatch(Object(Illuminate\Routing\Route), Object(App\Http\Controllers\Vendors\ACME\MessagePayloadController), 'long')
#20 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Route.php(144): Illuminate\Routing\Route->runController()
#21 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(653): Illuminate\Routing\Route->run(Object(Illuminate\Http\Request))
#22 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\Routing\Router->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#23 /path/to/us/app/Http/Middleware/V3/VerifyApiAuthentication.php(20): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#24 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): App\Http\Middleware\V3\VerifyApiAuthentication->handle(Object(Illuminate\Http\Request), Object(Closure))
#25 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#26 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(104): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#27 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(655): Illuminate\Pipeline\Pipeline->then(Object(Closure))
#28 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(629): Illuminate\Routing\Router->runRouteWithinStack(Object(Illuminate\Routing\Route), Object(Illuminate\Http\Request))
#29 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(607): Illuminate\Routing\Router->dispatchToRoute(Object(Illuminate\Http\Request))
#30 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(268): Illuminate\Routing\Router->dispatch(Object(Illuminate\Http\Request))
#31 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(Object(Illuminate\Http\Request))
#32 /path/to/us/app/Http/Middleware/LogRequests.php(12): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#33 [internal function]: App\Http\Middleware\LogRequests->handle(Object(Illuminate\Http\Request), Object(Closure))
#34 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#35 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(App\Http\Middleware\LogRequests), 'handle', Array)
#36 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): App\Http\Middleware\LogRequests->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#37 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#38 /path/to/us/vendor/barryvdh/laravel-cors/src/HandleCors.php(37): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#39 [internal function]: Barryvdh\Cors\HandleCors->handle(Object(Illuminate\Http\Request), Object(Closure))
#40 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#41 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(Barryvdh\Cors\HandleCors), 'handle', Array)
#42 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Barryvdh\Cors\HandleCors->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#43 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#44 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(46): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#45 [internal function]: Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(Object(Illuminate\Http\Request), Object(Closure))
#46 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#47 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode), 'handle', Array)
#48 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#49 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#50 /path/to/us/app/DatadogMiddleware.php(11): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#51 [internal function]: App\DatadogMiddleware->handle(Object(Illuminate\Http\Request), Object(Closure))
#52 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#53 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(App\DatadogMiddleware), 'handle', Array)
#54 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): App\DatadogMiddleware->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#55 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#56 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(104): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#57 [internal function]: Illuminate\Pipeline\Pipeline->then(Object(Closure))
#58 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(128): call_user_func_array(Array, Array)
#59 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(150): Illuminate\Pipeline\Pipeline->DDTrace\Integrations\Laravel\V5\{closure}(Object(Closure))
#60 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(117): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))
#61 /path/to/us/public/index.php(53): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))
#62 {main}

Next Illuminate\Database\QueryException: Undefined variable: statement (SQL: select * from "users" where "id" = 123456 limit 1) in /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php:770
Stack trace:
#0 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(726): Illuminate\Database\Connection->runQueryCallback('select * from "...', Array, Object(Closure))
#1 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Connection.php(351): Illuminate\Database\Connection->run('select * from "...', Array, Object(Closure))
#2 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(1648): Illuminate\Database\Connection->select('select * from "...', Array, true)
#3 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(1634): Illuminate\Database\Query\Builder->runSelect()
#4 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(638): Illuminate\Database\Query\Builder->get(Array)
#5 [internal function]: Illuminate\Database\Eloquent\Builder->getModels(Array)
#6 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#7 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Eloquent/EloquentIntegration.php(32): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(Illuminate\Database\Eloquent\Builder), 'getModels', Array)
#8 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(327): Illuminate\Database\Eloquent\Builder->DDTrace\Integrations\Eloquent\{closure}(Array)
#9 /path/to/us/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(297): Illuminate\Database\Eloquent\Builder->get(Array)
#10 /path/to/us/app/Models/Domain/UserQueryContext/UserQueryContext.php(36): Illuminate\Database\Eloquent\Builder->first()
#11 /path/to/us/app/Models/Domain/Timeline/UserMessagePayload.php(1858): App\Models\Domain\UserQueryContext\UserQueryContext->getUserById(123456)
#12 /path/to/us/app/Http/Controllers/Vendors/ACME/MessagePayloadController.php(29): App\Models\Domain\Timeline\UserMessagePayload->getLongPayload('ROU_1')
#13 [internal function]: App\Http\Controllers\Vendors\ACME\MessagePayloadController->long('123456', 'ROU_1')
#14 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(55): call_user_func_array(Array, Array)
#15 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(44): Illuminate\Routing\Controller->callAction('long', Array)
#16 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Route.php(189): Illuminate\Routing\ControllerDispatcher->dispatch(Object(Illuminate\Routing\Route), Object(App\Http\Controllers\Vendors\ACME\MessagePayloadController), 'long')
#17 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Route.php(144): Illuminate\Routing\Route->runController()
#18 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(653): Illuminate\Routing\Route->run(Object(Illuminate\Http\Request))
#19 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\Routing\Router->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#20 /path/to/us/app/Http/Middleware/V3/VerifyApiAuthentication.php(20): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#21 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): App\Http\Middleware\V3\VerifyApiAuthentication->handle(Object(Illuminate\Http\Request), Object(Closure))
#22 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#23 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(104): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#24 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(655): Illuminate\Pipeline\Pipeline->then(Object(Closure))
#25 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(629): Illuminate\Routing\Router->runRouteWithinStack(Object(Illuminate\Routing\Route), Object(Illuminate\Http\Request))
#26 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Router.php(607): Illuminate\Routing\Router->dispatchToRoute(Object(Illuminate\Http\Request))
#27 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(268): Illuminate\Routing\Router->dispatch(Object(Illuminate\Http\Request))
#28 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(53): Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(Object(Illuminate\Http\Request))
#29 /path/to/us/app/Http/Middleware/LogRequests.php(12): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#30 [internal function]: App\Http\Middleware\LogRequests->handle(Object(Illuminate\Http\Request), Object(Closure))
#31 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#32 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(App\Http\Middleware\LogRequests), 'handle', Array)
#33 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): App\Http\Middleware\LogRequests->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#34 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#35 /path/to/us/vendor/barryvdh/laravel-cors/src/HandleCors.php(37): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#36 [internal function]: Barryvdh\Cors\HandleCors->handle(Object(Illuminate\Http\Request), Object(Closure))
#37 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#38 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(Barryvdh\Cors\HandleCors), 'handle', Array)
#39 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Barryvdh\Cors\HandleCors->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#40 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#41 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(46): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#42 [internal function]: Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(Object(Illuminate\Http\Request), Object(Closure))
#43 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#44 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode), 'handle', Array)
#45 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#46 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#47 /path/to/us/app/DatadogMiddleware.php(11): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#48 [internal function]: App\DatadogMiddleware->handle(Object(Illuminate\Http\Request), Object(Closure))
#49 /opt/datadog-php/dd-trace-sources/src/DDTrace/Util/TryCatchFinally.php(31): call_user_func_array(Array, Array)
#50 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(123): DDTrace\Util\TryCatchFinally::executePublicMethod(Object(DDTrace\Scope), Object(App\DatadogMiddleware), 'handle', Array)
#51 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): App\DatadogMiddleware->DDTrace\Integrations\Laravel\V5\{closure}(Object(Illuminate\Http\Request), Object(Closure))
#52 /path/to/us/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(33): Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(Object(Illuminate\Http\Request))
#53 /path/to/us/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(104): Illuminate\Routing\Pipeline->Illuminate\Routing\{closure}(Object(Illuminate\Http\Request))
#54 [internal function]: Illuminate\Pipeline\Pipeline->then(Object(Closure))
#55 /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Laravel/V5/LaravelIntegrationLoader.php(128): call_user_func_array(Array, Array)
#56 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(150): Illuminate\Pipeline\Pipeline->DDTrace\Integrations\Laravel\V5\{closure}(Object(Closure))
#57 /path/to/us/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(117): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))
#58 /path/to/us/public/index.php(53): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))
#59 {main}

Problem with composer installing symfony/polyfill

For projects which already use a library dependent on some component of the symfony/polyfill library the composer require process for this library will likely fail, e.g.

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - don't install symfony/polyfill v1.7.0|remove symfony/polyfill-php56 v1.4.0
    - don't install symfony/polyfill-php56 v1.4.0|don't install symfony/polyfill v1.7.0
    - don't install symfony/polyfill v1.7.0|don't install symfony/polyfill-php56 v1.4.0
    - datadog/dd-trace 0.1.0 requires symfony/polyfill ~1.7.0 -> satisfiable by symfony/polyfill[v1.7.0].
    - Installation request for datadog/dd-trace ^0.1.0 -> satisfiable by datadog/dd-trace[0.1.0].
    - Installation request for symfony/polyfill-php56 (locked at v1.4.0) -> satisfiable by symfony/polyfill-php56[v1.4.0].

This is likely why the symfony/polyfill project recommend:

It is strongly recommended to upgrade your PHP version and/or install the missing extensions whenever possible. This polyfill should be used only when there is no better choice or when portability is a requirement.

I've installed the library on a system with PHP 7.0.30 and the tests pass fine. So I think it's only a few specific polyfills that might be required and it would be worth listing them.

I can submit a PR to remove the polyfill library but obviously my case isn't the only one. Is there a list of extensions required that we can polyfill specifically for?

Error handling exceptions with the Noop Tracer

I have received the following error in some of my tests.

Symfony\Component\Debug\Exception\FatalThrowableError: Call to undefined method OpenTracing\NoopSpan::setError()

When my tests are run, php is running as a cli, as a result the tracer is not registered in the service provider. I am using Laravel, and one of my tests hits a route and in that particular flow an exception is thrown in my application and bubbles up to the exception handler. It seems like this exception causes an issue with some of the registered trace functions as the setError method is missing.

It looks like in DDTrace\Integrations\Laravel\V5\LaravelProvider, if php is running in cli it will not run the register method, but it will still run the boot method. So, no tracer is created, and it seems to default to the OpenTracing\Tracer. I noticed that there is a way to create a noop tracer in the DDTrace\Tracer class, but if I register that tracer in the case where php is run as a cli, I get the following error

Error: Call to undefined method DDTrace\NoopSpan::getService()

So, it seems like both of the noop tracers are missing some methods.

Installing 0.13.4 from apk in alpine docker image fails

Using FROM php:7.0-fpm-alpine3.7 docker image

Running apk installation fails with:

Step 10/18 : RUN curl -L -s https://github.com/DataDog/dd-trace-php/releases/download/0.13.4/datadog-php-tracer_0.13.4-beta_noarch.apk --output datadog-php-tracer.apk && apk add datadog-php-tracer.apk --allow-untrusted
 ---> Running in dee396758055
(1/8) Installing php5-common (5.6.40-r0)
(2/8) Installing readline (7.0.003-r0)
(3/8) Installing php5-cli (5.6.40-r0)
(4/8) Installing php5 (5.6.40-r0)
(5/8) Installing libc6-compat (1.1.18-r3)
ERROR: libc6-compat-1.1.18-r3: trying to overwrite lib/ld-linux-x86-64.so.2 owned by glibc-2.28-r0.
ERROR: libc6-compat-1.1.18-r3: failed to rename /.apk.a92d152b48d95529c336355de66b4f3ea505b2eba28e68c3 to lib64.

ElasticSearchIntegration - `performRequest` does not exist on class

When I enabled the DD APM I got the following error message

┌─[root@server] - [/opt/app/qa/api] - [2018-12-17 12:59:26]
└─[0] <> php artisan

In ElasticSearchIntegration.php line 160:

  [InvalidArgumentException]
  failed to set return for Elasticsearch\Endpoints\AbstractEndpoint::performRequest, the method does not exist


Exception trace:
 () at /opt/app/qa/api/vendor/datadog/dd-trace/src/DDTrace/Integrations/ElasticSearch/V1/ElasticSearchIntegration.php:160
 dd_trace() at /opt/app/qa/api/vendor/datadog/dd-trace/src/DDTrace/Integrations/ElasticSearch/V1/ElasticSearchIntegration.php:160
 DDTrace\Integrations\ElasticSearch\V1\ElasticSearchIntegration::load() at n/a:n/a
 call_user_func() at /opt/app/qa/api/vendor/datadog/dd-trace/src/DDTrace/Integrations/IntegrationsLoader.php:54
 DDTrace\Integrations\IntegrationsLoader::load() at /opt/app/qa/api/vendor/datadog/dd-trace/src/DDTrace/Integrations/Laravel/V5/LaravelProvider.php:172
 DDTrace\Integrations\Laravel\V5\LaravelProvider->boot() at n/a:n/a
 call_user_func_array() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:29
 Illuminate\Container\BoundMethod::Illuminate\Container\{closure}() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:87
 Illuminate\Container\BoundMethod::callBoundMethod() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:31
 Illuminate\Container\BoundMethod::call() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Container/Container.php:572
 Illuminate\Container\Container->call() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:795
 Illuminate\Foundation\Application->bootProvider() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:778
 Illuminate\Foundation\Application->Illuminate\Foundation\{closure}() at n/a:n/a
 array_walk() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:779
 Illuminate\Foundation\Application->boot() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17
 Illuminate\Foundation\Bootstrap\BootProviders->bootstrap() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:204
 Illuminate\Foundation\Application->bootstrapWith() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:297
 Illuminate\Foundation\Console\Kernel->bootstrap() at /opt/app/qa/api/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:120
 Illuminate\Foundation\Console\Kernel->handle() at /opt/app/qa/api/artisan:43

From my own debugging I can see that we rely on 5.3.* of the elasticsearch/elasticsearch package, however, the composer.json file in here suggests that you rely on the 1.2.* version. (over 4 years old)

It appears that the method you want to hook into doesn't exist in later version of the package. I'm not entirely sure, otherwise I'd send in a PR, but I feel like you're looking for this method https://github.com/elastic/elasticsearch-php/blob/master/src/Elasticsearch/Transport.php#L93.

If possible as well can you put instrumentation setup through try/catches and disable those that fail, possibly with an error somewhere?

I've had to disable the elastic search integration provider due to issue.

Predis Integration bug

In the PredisIntegration.php at line 160

       if (isset($args[1])) {
            $options = $args[1];
            if (isset($options['parameters']) && isset($options['parameters']['database'])) {
                $tags['out.redis_db'] = $options['parameters']['database'];
            }
        }

$options is not an array but is an Object, so an Exception is thrown

Cannot use object of type Predis\Configuration\Options as array

It should be like

       if (isset($args[1])) {
            $options = $args[1];

            $parameters = $options->__get('parameters');

            if (is_array($parameters) && isset($parameters['database'])) {
                $tags['out.redis_db'] = $parameters['database'];
            }
        }

Laravel Eloquent Integration failing to call traced methods on the Model class

I encountered this issue when trying to persist changes to Eloquent models to the DB. It seems the protected method \Illuminate\Database\Eloquent\Model::performUpdate() isn't being found when being called from the traced override in \DDTrace\Integrations\Eloquent\EloquentIntegration.

Likely to be related to the PHP 5.4 support changes in PR #194, I haven't had time to investigate this though.

Stack Trace

BadMethodCallException: Call to undefined method Humble\Models\BillingSubscription::performUpdate()
#105 vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(50): throwBadMethodCallException
#104 vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): forwardCallTo
#103 vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1608): __call
#102 vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(0): call_user_func_array
#101 vendor/datadog/dd-trace/src/DDTrace/Util/TryCatchFinally.php(31): executePublicMethod
#100 vendor/datadog/dd-trace/src/DDTrace/Integrations/Eloquent/EloquentIntegration.php(59): DDTrace\Integrations\Eloquent\{closure}
#99 vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(644): save

Environment

  • PHP 7.2.11
  • Laravel 5.7.19
  • dd-trace-php 0.9.0

Predis Integration exception

Hi,
if i enable ddtrace module, my application breaks with this error:

Recoverable Error: Object of class Predis\Connection\Aggregate\MasterSlaveReplication could not be converted to string (File: /opt/datadog-php/dd-trace-sources/src/DDTrace/Integrations/Predis/PredisIntegration.php - Line: 171)

Being able to overwrite resource name of trace in symfony (v3)

In some special circumstances, we'd like to set our own resource name for a trace. I tried with

 $rootScope = \DDTrace\GlobalTracer::get()->getRootScope();
        if (null !== $rootScope) {
            $rootSpan = $rootScope->getSpan();
            $rootSpan->setResource($name);

            $rootSpan->setTag('symfony.route.name', $name);
        }

But that doesn't work. The symfony.route.name part does get recorded, though. Would be nice, if that would be possible.

It's with the symfony v3 bundle, didn't check for v4.

Alpine (musl libc): "backtrace_symbols: symbol not found" since 0.13.2

I'm testing ddtrace on our alpine php-fpm docker image. php --ri=ddtrace returns the following error:

PHP Warning:  PHP Startup: Unable to load dynamic library 'ddtrace.so' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/ddtrace.so (Error relocating /usr/local/lib/php/extensions/no-debug-non-zts-20170718/ddtrace.so: backtrace_symbols: symbol not found), /usr/local/lib/php/extensions/no-debug-non-zts-20170718/ddtrace.so.so (Error loading shared library /usr/local/lib/php/extensions/no-debug-non-zts-20170718/ddtrace.so.so: No such file or directory)) in Unknown on line 0
Extension 'ddtrace' not present.

I have read that on musl-libc, while the package libexecinfo-dev provides the headers, implementation is missing. This makes the extension unusable on alpine images.

PEAR DB support

Any chance that PEAR DB support can be added? We have a massive legacy application that uses PEAR DB (DB_common_original class).

If not, is there a way we can hook this into our tracing?

PHP < 5.6 compatibility

Don't known if you really want to support php < 5.6, but package.xml states minimal version is 5.4

Build fails with 5.4 and 5.5

Please clarify

Array to string conversion in ElasticSearchIntegration

Seems that this part in buildResourceName() assumes that params['index'] is plain string.. but I seem to get it as array

$resourceFragments[] = $relevantParamName . ':' . $params[$relevantParamName];

https://github.com/DataDog/dd-trace-php/blob/master/src/DDTrace/Integrations/ElasticSearch/V1/ElasticSearchIntegration.php#L313

So I get

"error":"Array to string conversion", 
"backtrace":[{
"file":"\/var\/app\/vendor\/datadog\/dd-trace\/src\/DDTrace\/Integrations\/ElasticSearch\/V1\/ElasticSearchIntegration.php",
"line":189,
"function":"buildResourceName",
"class":"DDTrace\\Integrations\\ElasticSearch\\V1\\ElasticSearchIntegration",
"type":"::",
"args":["search",{"index":["deal","org","file","person","product","mail_attachment","note"],
"body":{"query":{"function_score...":

What is the "risk"?

The readme for this project states: This project is experimental and under active development. Use it at your own risk..

I love DataDog. My employer uses it heavily as an APM tool, and to do application-level custom metrics for BI insights, etc. I would love to know what the specific risks are here. Since my employer is already a customer of your APM product, it would be nice to further instrument our application with this tracer.

However, I want to know what the specific risks are. Any advice you can offer?

Thoughts on dropping support for < PHP 7.1

Just this one last thing and then I'm done blowing up your inboxes. :)

Considering the fact that PHP 5.6 and PHP 7.0 will both be EOL in 2 months, what are your thoughts on dropping support for anything less than PHP 7.1 so we can remove the polyfills and take full advantage of all the amazing new features in PHP.now? :)

Laravel memory leak with memcached

Hello, we are using the Laravel provider with the Memcached extension. When we are during a simple API request to retrieve 1 object it is causing a segmentation fault. For this request memcached would only be used for column type definitions and loaded once from memcached. We could not find anything unique with the data that is causing the issue but can provide the request data and expected response. We can also provide a core dump if needed. Let me know what information you need.

Request:

Request URL: https://test.com/beta/api/v1/employee/blocking-rules
Request Method: GET
Status Code: 200 OK
Remote Address: 216.211.141.33:443
Referrer Policy: no-referrer-when-downgrade

Accept: application/vnd.api+json
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
Authorization: Bearer ************
Connection: keep-alive
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36
{
   "meta":{
      "page":{
         "current-page":1,
         "per-page":15,
         "from":1,
         "to":8,
         "total":8,
         "last-page":1
      }
   },
   "links":{
      "first":"https:\/\/test.com\/jsonapi\/api\/v1\/employee\/blocking-rules?page%5Bnumber%5D=1&page%5Bsize%5D=15",
      "last":"https:\/\/test.com\/jsonapi\/api\/v1\/employee\/blocking-rules?page%5Bnumber%5D=1&page%5Bsize%5D=15"
   },
   "data":[
      {
         "type":"blocking-rule",
         "id":"1",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":2,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"2",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":3,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"3",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":4,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"4",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":5,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"5",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":6,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"6",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":7,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"7",
         "attributes":{
            "resource_id":31,
            "resource_area_id":0,
            "block_resource_id":23,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      },
      {
         "type":"blocking-rule",
         "id":"8",
         "attributes":{
            "resource_id":80,
            "resource_area_id":0,
            "block_resource_id":80,
            "block_resource_area_id":0
         },
         "relationships":{
            "blockingResource":[

            ],
            "blockingResourceArea":[

            ],
            "blockedResource":[

            ],
            "blockedResourceArea":[

            ]
         }
      }
   ]
}

expected response:

[0.10.0] Missing file in pecl archive

/dev/shm/BUILD/php-pecl-datadog-trace-0.10.0/NTS/src/ext/ddtrace.c:18:10: fatal error: request_hooks.h: No such file or directory
 #include "request_hooks.h"
          ^~~~~~~~~~~~~~~~~
compilation terminated.

5.4 support and ZTS build

PHP 5.4 build seems OK (NTS build), but fails for ZTS

BUILDSTDERR: In file included from /usr/include/php-zts/php/Zend/zend_alloc.h:27:0,
BUILDSTDERR:                  from /usr/include/php-zts/php/Zend/zend.h:237,
BUILDSTDERR:                  from /usr/include/php-zts/php/main/php.h:34,
BUILDSTDERR:                  from /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:1:
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c: In function 'fcall_fbc':
BUILDSTDERR: /usr/include/php-zts/php/Zend/../TSRM/TSRM.h:164:57: error: 'tsrm_ls' undeclared (first use in this function)
BUILDSTDERR:  #define TSRMG(id, type, element) (((type) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(id)])->element)
BUILDSTDERR:                                                          ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_globals_macros.h:45:16: note: in expansion of macro 'TSRMG'
BUILDSTDERR:  # define EG(v) TSRMG(executor_globals_id, zend_executor_globals *, v)
BUILDSTDERR:                 ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_execute.h:435:2: note: in expansion of macro 'EG'
BUILDSTDERR:   EG(active_op_array)->run_time_cache[(num)]
BUILDSTDERR:   ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:70:9: note: in expansion of macro 'CACHED_PTR'
BUILDSTDERR:      if (CACHED_PTR(opline->op1.literal->cache_slot)) {
BUILDSTDERR:          ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/../TSRM/TSRM.h:164:57: note: each undeclared identifier is reported only once for each function it appears in
BUILDSTDERR:  #define TSRMG(id, type, element) (((type) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(id)])->element)
BUILDSTDERR:                                                          ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_globals_macros.h:45:16: note: in expansion of macro 'TSRMG'
BUILDSTDERR:  # define EG(v) TSRMG(executor_globals_id, zend_executor_globals *, v)
BUILDSTDERR:                 ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_execute.h:435:2: note: in expansion of macro 'EG'
BUILDSTDERR:   EG(active_op_array)->run_time_cache[(num)]
BUILDSTDERR:   ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:70:9: note: in expansion of macro 'CACHED_PTR'
BUILDSTDERR:      if (CACHED_PTR(opline->op1.literal->cache_slot)) {
BUILDSTDERR:          ^
BUILDSTDERR:          ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/../TSRM/TSRM.h:164:57: note: each undeclared identifier is reported only once for each function it appears in
BUILDSTDERR:  #define TSRMG(id, type, element) (((type) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(id)])->element)
BUILDSTDERR:                                                          ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_globals_macros.h:45:16: note: in expansion of macro 'TSRMG'
BUILDSTDERR:  # define EG(v) TSRMG(executor_globals_id, zend_executor_globals *, v)
BUILDSTDERR:                 ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_execute.h:435:2: note: in expansion of macro 'EG'
BUILDSTDERR:   EG(active_op_array)->run_time_cache[(num)]
BUILDSTDERR:   ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:70:9: note: in expansion of macro 'CACHED_PTR'
BUILDSTDERR:      if (CACHED_PTR(opline->op1.literal->cache_slot)) {
BUILDSTDERR:          ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c: In function 'update_opcode_leave':
BUILDSTDERR: /usr/include/php-zts/php/Zend/../TSRM/TSRM.h:168:19: error: expected expression before ',' token
BUILDSTDERR:  #define TSRMLS_CC , TSRMLS_C
BUILDSTDERR:                    ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:383:34: note: in expansion of macro 'TSRMLS_CC'
BUILDSTDERR:      zend_vm_stack_clear_multiple(TSRMLS_CC);
BUILDSTDERR:                                   ^
BUILDSTDERR: /usr/include/php-zts/php/Zend/../TSRM/TSRM.h:168:19: error: too many arguments to function 'zend_vm_stack_clear_multiple'
BUILDSTDERR:  #define TSRMLS_CC , TSRMLS_C
BUILDSTDERR:                    ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:383:34: note: in expansion of macro 'TSRMLS_CC'
BUILDSTDERR:      zend_vm_stack_clear_multiple(TSRMLS_CC);
BUILDSTDERR:                                   ^
BUILDSTDERR: In file included from /usr/include/php-zts/php/Zend/zend_API.h:30:0,
BUILDSTDERR:                  from /usr/include/php-zts/php/main/php.h:38,
BUILDSTDERR:                  from /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:1:
BUILDSTDERR: /usr/include/php-zts/php/Zend/zend_execute.h:331:32: note: declared here
BUILDSTDERR:  static zend_always_inline void zend_vm_stack_clear_multiple(TSRMLS_D)
BUILDSTDERR:                                 ^
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c: In function 'fcall_fbc':
BUILDSTDERR: /builddir/build/BUILD/php-pecl-datadog-trace-0.10.0/ZTS/src/ext/dispatch.c:78:1: warning: control reaches end of non-void function [-Wreturn-type]
BUILDSTDERR:  }
BUILDSTDERR:  ^
BUILDSTDERR: make: *** [src/ext/dispatch.lo] Error 1
BUILDSTDERR: make: *** Waiting for unfinished jobs....

Move to CircleCI 2

CircleCI 1 support will end by the end of august. We should move to v2.

Installing 0.13.4 from source in alpine docker image fails

Getting opt/datadog-php/bin/post-install.sh: line 69: syntax error: unexpected "(" (expecting "}")

while building docker container using image FROM php:7.0-fpm-alpine3.7

ENV DD_VERSION=0.13.4

RUN curl -L -s https://github.com/DataDog/dd-trace-php/releases/download/$DD_VERSION/datadog-php-tracer-$DD_VERSION-beta.x86_64.tar.gz  | tar xvzf - -C /tmp  \
 && cd /tmp \
 && sh opt/datadog-php/bin/post-install.sh \
 && rm -rf cd /tmp/opt

Segfaults in Symfony 4 since dd-trace-php 0.10.0

I am experiencing an issue whereby the majority of Symfony HTTP requests fail due to a segfault in the php-fpm process.

Could be related to #202 as Monolog is also a dependency of my application.

  • Tried on both of Alpine 3.8/php-fpm 7.2 and Alpine 3.9/php-fpm 7.3, both within Docker
  • List of installed extensions: https://pastebin.com/CFKSvrxd
  • Installed from datadog-php-tracer_0.13.1-beta_noarch.apk (no composer package installed)
  • Issue occurs with every release following 0.9.1
  • Previously worked without issue on php-fpm 7.2 with dd-trace-php 0.9.1 (with the composer Symfony bundle package installed)

I am not aware of how I can debug this further. If you can point me in the right direction to help diagnose this issue it would be appreciated. Many thanks.

Correct way to trace a plain function

I've got dd_trace working well with class methods however I'm trying to make an integration for Curl which requires attaching to "curl_exec" and it doesn't appear to be working.

It looks like this code should work (very short example):

        dd_trace('curl_exec', function ($ch) {
            return curl_exec($ch);
        });

But when I do that, no code in the closure is ever executed.

Also I'm a little unclear of how to call the original function. With classes $this is used but I'm not sure whether calling curl_exec inside the closure will make a infinite loop or if it'll execute the function.

Thanks

When installed dd-trace-php my app not working

I was installed the "datadog-php-tracer_0.14.1-beta_amd64.deb" on my server and after installed my application return 500 error. Below is the things which I have configured or my server related information:
I am using Ubuntu, NGINX and php-fpm 7.0.
I have installed datadog agent v6.

For FPM I have set below configuration:

  1. Installed : "datadog-php-tracer_0.14.1-beta_amd64.deb"
  2. NGINX config: fastcgi_param DD_TRACE_DEBUG true;
  3. Set ddtrace.log_backtrace=1 in file /etc/php/7.0/cli/conf.d/98-ddtrace.ini.
  4. In Agent datadog.yaml:
    apm_config:
    enabled: true

When I am checking my php-fpm log file, it shows the error about "Slim\PDO\Statement\StatementContainer->execute()". But when I disabled the Datadog Agent or APM trace then my application working normally well. In short when I am enable ddtrace my app not working and return 500 error.

Can you please look in it and let me know how can resolved the issue and APM work well with my app.

Also here attached my php error log file:
php-fpm-log.txt

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.