MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId
(mongodb >=1.3.0)
MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId — Returns the command's operation ID
说明
final public MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId(): stringThe operation ID is generated by the driver and may be used to link events together such as bulk write operations, which may have been split across several commands at the protocol level.
注意: Since multiple commands may share the same operation ID, it is not reliable to use this value to associate event objects with each other. The request ID returned by MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId() should be used instead.
参数
此函数没有参数。
返回值
Returns the command's operation ID.
错误/异常
Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.参见
MongoDB\Driver\Monitoring\CommandStartedEvent::getOperationId() - Returns the command's operation ID MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId() - Returns the command's request ID Application Performance Monitoring (APM)User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getoperationid.php