PHP8 应用程序性能监控
MongoDB 驱动程序包含一个事件订阅者 API,它允许应用程序 监视与 » 服务器发现和监视规范相关的命令和内部活动。 本教程将演示使用 MongoDB\Driver\Monitoring\CommandSubscriber 接口进行命令监视。
MongoDB\Driver\Monitoring\CommandSubscriber 接口定义了三种方法:、 和 。 这三种方法中的每一种都接受相应事件的特定类的单个参数。例如,的参数 是 MongoDB\Driver\Monitoring\CommandSucceededEvent 对象。commandStartedcommandSucceededcommandFailedeventcommandSucceeded$event
在本教程中,我们将实现一个订阅服务器,该订阅服务器创建所有列表 查询配置文件及其花费的平均时间。
订户类基架
我们从订阅者的框架开始:
<?php
class QueryTimeCollector implements \MongoDB\Driver\Monitoring\CommandSubscriber
{
public function commandStarted( \MongoDB\Driver\Monitoring\CommandStartedEvent $event ): void
{
}
public function commandSucceeded( \MongoDB\Driver\Monitoring\CommandSucceededEvent $event ): void
{
}
public function commandFailed( \MongoDB\Driver\Monitoring\CommandFailedEvent $event ): void
{
}
}
?>
注册订阅者
实例化 subscriber 对象后,需要向 驾驶员监控系统。这是通过调用MongoDB\Driver\Monitoring\addSubscriber()或MongoDB\Driver\Manager::addSubscriber()进行注册来完成的 分别是全局订阅者或具有特定经理的订阅者。
<?php
\MongoDB\Driver\Monitoring\addSubscriber( new QueryTimeCollector() );
?>
实现逻辑
注册对象后,剩下的唯一事情就是实现逻辑 在 subscriber 类中。关联构成 成功执行的命令(commandStarted 和 commandSucceeded),每个 Event 对象公开一个字段。requestId
为了记录每个查询形状的平均时间,我们将首先检查 commandStarted 事件中的命令。然后,我们将添加 属性的项,由 its 和 索引,其值表示查询形状。findpendingCommandsrequestId
如果我们收到一个相同的对应 commandSucceeded 事件,我们将事件的持续时间 (from ) 添加到总时间中,并递增 操作计数。requestIddurationMicros
如果遇到相应的 commandFailed 事件,我们只需删除 从酒店进入。pendingCommands
<?php
class QueryTimeCollector implements \MongoDB\Driver\Monitoring\CommandSubscriber
{
private $pendingCommands = [];
private $queryShapeStats = [];
/* Creates a query shape out of the filter argument. Right now it only
* takes the top level fields into account */
private function createQueryShape( array $filter )
{
return json_encode( array_keys( $filter ) );
}
public function commandStarted( \MongoDB\Driver\Monitoring\CommandStartedEvent $event ): void
{
if ( array_key_exists( 'find', (array) $event->getCommand() ) )
{
$queryShape = $this->createQueryShape( (array) $event->getCommand()->filter );
$this->pendingCommands[$event->getRequestId()] = $queryShape;
}
}
public function commandSucceeded( \MongoDB\Driver\Monitoring\CommandSucceededEvent $event ): void
{
$requestId = $event->getRequestId();
if ( array_key_exists( $requestId, $this->pendingCommands ) )
{
$this->queryShapeStats[$this->pendingCommands[$requestId]]['count']++;
$this->queryShapeStats[$this->pendingCommands[$requestId]]['duration'] += $event->getDurationMicros();
unset( $this->pendingCommands[$requestId] );
}
}
public function commandFailed( \MongoDB\Driver\Monitoring\CommandFailedEvent $event ): void
{
if ( array_key_exists( $event->getRequestId(), $this->pendingCommands ) )
{
unset( $this->pendingCommands[$event->getRequestId()] );
}
}
public function __destruct()
{
foreach( $this->queryShapeStats as $shape => $stats )
{
echo "Shape: ", $shape, " (", $stats['count'], ")\n ",
$stats['duration'] / $stats['count'], "µs\n\n";
}
}
}
$m = new \MongoDB\Driver\Manager( 'mongodb://localhost:27016' );
/* Add the subscriber */
\MongoDB\Driver\Monitoring\addSubscriber( new QueryTimeCollector() );
/* Do a bunch of queries */
$query = new \MongoDB\Driver\Query( [
'region_slug' => 'scotland-highlands', 'age' => [ '$gte' => 20 ]
] );
$cursor = $m->executeQuery( 'dramio.whisky', $query );
$query = new \MongoDB\Driver\Query( [
'region_slug' => 'scotland-lowlands', 'age' => [ '$gte' => 15 ]
] );
$cursor = $m->executeQuery( 'dramio.whisky', $query );
$query = new \MongoDB\Driver\Query( [ 'region_slug' => 'scotland-lowlands' ] );
$cursor = $m->executeQuery( 'dramio.whisky', $query );
?>