Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-43518: logging #3316

Open
wants to merge 13 commits into
base: 5.2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/fundamentals/read-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Read Operations
Retrieve Data </fundamentals/read-operations/retrieve>
Search Text </fundamentals/read-operations/search-text>
Modify Query Results </fundamentals/read-operations/modify-results>
Set Read Preference </fundamentals/read-operations/read-pref>
Read Preference </fundamentals/read-operations/read-pref>
Query Logging </fundamentals/read-operations/query-logging>

.. contents:: On this page
:local:
Expand Down
82 changes: 82 additions & 0 deletions docs/fundamentals/read-operations/query-logging.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
.. _laravel-query-logging:

====================
Enable Query Logging
====================

.. facet::
:name: genre
:values: reference

.. meta::
:keywords: monitoring, CRUD, code example

.. contents:: On this page
:local:
:backlinks: none
:depth: 2
:class: singlecol

Overview
--------

In this guide, you can learn how to enable query logging in
{+odm-long+}. Query logging can help you debug your queries and monitor
database interactions.

.. include:: /includes/fundamentals/read-operations/before-you-get-started.rst

Enable Logs On a Connection
---------------------------

To enable logs on a connection, you can use the ``enableQueryLog()``
method on the ``DB`` facade. This method enables MongoDB command logging
on any queries that you perform on the database connection.

After you enable query logging, any queries you perform are stored in
memory. To retrieve the logs, use one of the following methods:

- ``getQueryLog()``: Returns a log of MongoDB queries
- ``getRawQueryLog()``: Returns a log of raw MongoDB queries

The following example enables query logging, performs some queries, then
prints the query log:

.. io-code-block::
:copyable: true

.. input:: /includes/fundamentals/read-operations/ReadOperationsTest.php
:language: php
:dedent:
:start-after: start-query-log
:end-before: end-query-log
:emphasize-lines: 1, 7

.. output::
:language: json
:visible: false

{
"query": "{ \"find\" : \"movies\", \"filter\" : { \"title\" : \"Carrie\" } }",
"bindings": [],
"time": 29476
}
{
"query": "{ \"find\" : \"movies\", \"filter\" : { \"year\" : { \"$lt\" : { \"$numberInt\" : \"2005\" } } } }",
"bindings": [],
"time": 29861
}
{
"query": "{ \"find\" : \"movies\", \"filter\" : { \"imdb.rating\" : { \"$gt\" : { \"$numberDouble\" : \"8.5\" } } } }",
"bindings": [],
"time": 27251
}

Additional Information
----------------------

To learn more about connecting to MongoDB, see the
:ref:`laravel-connect-to-mongodb`.

To learn how to retrieve data based on filter criteria, see the
:ref:`laravel-fundamentals-read-retrieve` guide.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
use MongoDB\Driver\ReadPreference;
use MongoDB\Laravel\Tests\TestCase;

use function json_encode;

use const JSON_PRETTY_PRINT;

class ReadOperationsTest extends TestCase
{
protected function setUp(): void
Expand Down Expand Up @@ -183,4 +187,44 @@ public function testReadPreference(): void
$this->assertNotNull($movies);
$this->assertCount(2, $movies);
}

/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testQueryLog(): void
{
// start-query-log
DB::connection('mongodb')->enableQueryLog();

Movie::where('title', 'Carrie')->get();
Movie::where('year', '<', 2005)->get();
Movie::where('imdb.rating', '>', 8.5)->get();

$logs = DB::connection('mongodb')->getQueryLog();
foreach ($logs as $log) {
echo json_encode($log, JSON_PRETTY_PRINT);
}

// end-query-log

$this->assertNotNull($logs);
$this->expectOutputRegex('/^'
. '\{'
. '\s*"query"\s*:\s*"\{\\\"find\\\"\s*:\s*\\\"movies\\\",\s*\\\"filter\\\"\s*:\s*\{\\\"title\\\"\s*:\s*\\\"Carrie\\\"\}\}",'
. '\s*"bindings"\s*:\s*\[\],'
. '\s*"time"\s*:\s*\d+'
. '\}'
. '\{'
. '\s*"query"\s*:\s*"\{\\\"find\\\"\s*:\s*\\\"movies\\\",\s*\\\"filter\\\"\s*:\s*\{\\\"year\\\"\s*:\s*\{\\\"\\$lt\\\"\s*:\s*\{\\\"\\$numberInt\\\"\s*:\s*\\\"2005\\\"\}\}\}\}",'
. '\s*"bindings"\s*:\s*\[\],'
. '\s*"time"\s*:\s*\d+'
. '\}'
. '\{'
. '\s*"query"\s*:\s*"\{\\\"find\\\"\s*:\s*\\\"movies\\\",\s*\\\"filter\\\"\s*:\s*\{\\\"imdb.rating\\\"\s*:\s*\{\\\"\\$gt\\\"\s*:\s*\{\\\"\\$numberDouble\\\"\s*:\s*\\\"8\.5\\\"\}\}\}\}",'
. '\s*"bindings"\s*:\s*\[\],'
. '\s*"time"\s*:\s*\d+'
. '\}'
. '$/x');
}
}
Loading