// Copyright 2018-present MongoDB Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include #include #include namespace mongocxx { MONGOCXX_INLINE_NAMESPACE_BEGIN namespace events { /// /// An event notification sent when the driver begins executing a MongoDB command. /// /// @see "CommandStartedEvent" in /// https://github.com/mongodb/specifications/blob/master/source/command-monitoring/command-monitoring.rst /// class MONGOCXX_API command_started_event { public: MONGOCXX_PRIVATE explicit command_started_event(const void* event); /// /// Destroys a command_started_event. /// ~command_started_event(); /// /// Returns the command that has been started. /// /// @return The command. /// bsoncxx::document::view command() const; /// /// Returns the name of the database. /// /// @return The database name. /// bsoncxx::stdx::string_view database_name() const; /// /// Returns the name of the command. /// /// @return The command name. /// bsoncxx::stdx::string_view command_name() const; /// /// Returns the request id. /// /// @return The request id. /// std::int64_t request_id() const; /// /// Returns the operation id. /// /// @return The operation id. /// std::int64_t operation_id() const; /// /// Returns the host name. /// /// @return The host name. /// bsoncxx::stdx::string_view host() const; /// /// Returns the port. /// /// @return The port. /// std::uint16_t port() const; private: const void* _started_event; }; } // namespace events MONGOCXX_INLINE_NAMESPACE_END } // namespace mongocxx #include