使用Guzzle 6获取API调用持续时间的最佳方法是什么

时间:2015-09-22 21:58:12

标签: php guzzle guzzle6

目前使用Guzzle 6似乎没有开箱即用的方式来获取API调用的持续时间。使用下面的代码,通过任何普通电话获得此统计数据的最佳方法是什么。

我正在使用How do you log all API calls using Guzzle 6

中的以下代码
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Middleware;
use GuzzleHttp\MessageFormatter;
use Monolog\Logger;

$stack = HandlerStack::create();
$stack->push(
    Middleware::log(
        new Logger('Logger'),
        new MessageFormatter('{req_body} - {res_body}')
    )
);
$client = new \GuzzleHttp\Client(
    [
        'base_uri' => 'http://httpbin.org',
        'handler' => $stack,
    ]
);

echo (string) $client->get('ip')->getBody();

2 个答案:

答案 0 :(得分:4)

我推荐您使用'on_stats'请求选项Guzzle Docs - Request OptionsTransferStats object

要实现此功能,您可以修改get请求以使用请求选项。它将类似于以下内容:

// get($uri, $options) proxies to request($method, $uri, $options)
// request($method, $uri, $options) proxies to requestAsync($method, $uri, $options)
// and sets the $options[RequestOptions::SYNCHRONOUS] to true
// and then waits for promises to resolve returning a Psr7\http-message\ResponseInterface instance

$response = $client->get($uri, [
    'on_stats'  => function (TransferStats $stats) use ($logger) {
        // do something inside the callable.
        echo $stats->getTransferTime() . "\n";
        $logger->debug('Request' . $stats->getRequest() . 
                       'Response' . $stat->getResponse() .
                       'Tx Time' . $stat->getTransferTime()
        );
    },
]);
echo $response->getBody();

**注意:我确定有办法确保日志格式更好,但是,这可以作为概念证明。

TransferStats在各个处理程序中生成并使用,此时处理程序无法将其提供给堆栈。因此,它们无法在放置在堆栈上的中间件中使用。

答案 1 :(得分:0)

我没有足够的声誉来评论,而只是为了改善this答案

$response = $client->post($uri, [
    RequestOptions::JSON => $postData,
    RequestOptions::ON_STATS => function (TransferStats $stats) use ($logger) {
        $formatter = new MessageFormatter('{"request":{"uri":"{uri}","body":{req_body}},"response":{"code":{code},"body":{res_body}},"time":'.$stats->getTransferTime().'}');
        $message = $formatter->format($stats->getRequest(), $stats->getResponse());

        $logger->info($message);
    },
]);

P.S .:该代码适用于Guzzle 7