@@ -75,7 +75,7 @@ To monitor command events, write a class that implements the
75
75
``MongoClient`` instance.
76
76
77
77
To learn more about MongoDB database commands, see the
78
- :manual:`MongoDB manual entry on database commands </reference/command/>` in the
78
+ :manual:`Database Commands </reference/command/>` guide in the
79
79
Server Manual.
80
80
81
81
.. note:: Internal Commands
@@ -90,8 +90,8 @@ Server Manual.
90
90
As a security measure, the driver redacts the contents of some command events. This
91
91
protects the sensitive information contained in these command events. For a
92
92
full list of redacted command events, see the
93
- :spec:`MongoDB command logging and monitoring specification </command-logging-and-monitoring/command-logging-and-monitoring.md#security>`
94
- in GitHub.
93
+ :spec:`Security </command-logging-and-monitoring/command-logging-and-monitoring.md#security>`
94
+ section of the MongoDB Command Logging and Monitoring specification in GitHub.
95
95
96
96
Example
97
97
^^^^^^^
@@ -166,15 +166,17 @@ To monitor a type of SDAM event, write a class that
166
166
implements one of the three preceding interfaces and register an instance of that
167
167
class with your ``MongoClient`` instance.
168
168
169
- For a detailed description of each SDAM event in the driver, see the
170
- :spec:`MongoDB SDAM Logging and Monitoring Specification
171
- </server-discovery-and-monitoring/server-discovery-and-monitoring-logging-and-monitoring.md#events-api>`.
169
+ For a detailed description of each SDAM event in the driver, see the
170
+ :spec:`Server API
171
+ </server-discovery-and-monitoring/server-discovery-and-monitoring-logging-and-monitoring.md#events-api>`
172
+ section of th MongoDB SDAM Logging and Monitoring Specification in GitHub.
172
173
173
174
.. note:: Load Balanced Mode
174
175
175
176
The driver doesn't emit heartbeat related events when in load balanced mode.
176
- To learn more about SDAM events with load balancing, see
177
- :spec:`MongoDB Load Balancer Support Specification </load-balancers/load-balancers.md#server-discovery-logging-and-monitoring>`.
177
+ To learn more about SDAM events with load balancing, see the
178
+ :spec:`Server Discovery Logging and Monitoring </load-balancers/load-balancers.md#server-discovery-logging-and-monitoring>`
179
+ section of the MongoDB Load Balancer Support Specification in GitHub.
178
180
179
181
Example
180
182
^^^^^^^
@@ -338,9 +340,9 @@ All MXBean instances created by the driver are under the domain
338
340
To learn more about the topics discussed in this subsection, see the
339
341
following resources from Oracle:
340
342
341
- - `Platform MBean Server Reference Documentation <https://docs.oracle.com/en/java/javase/16/management/overview-java-se-monitoring-and-management.html#GUID-F7B9AB8A-F5A8-472A-AEC6-93B5B7FBE7CE>`__
342
- - `MXBean Documentation <https://docs.oracle.com/javase/tutorial/jmx/mbeans/mxbeans.html>`__
343
- - `MBean Documentation <https://docs.oracle.com/javase/tutorial/jmx/mbeans/standard.html>`__
343
+ - `Platform MBean Server Reference documentation <https://docs.oracle.com/en/java/javase/16/management/overview-java-se-monitoring-and-management.html#GUID-F7B9AB8A-F5A8-472A-AEC6-93B5B7FBE7CE>`__
344
+ - `MXBean documentation <https://docs.oracle.com/javase/tutorial/jmx/mbeans/mxbeans.html>`__
345
+ - `MBean documentation <https://docs.oracle.com/javase/tutorial/jmx/mbeans/standard.html>`__
344
346
345
347
JMX and JConsole Example
346
348
~~~~~~~~~~~~~~~~~~~~~~~~
@@ -355,7 +357,7 @@ the Java Platform.
355
357
rather than a source of truth. For guaranteed up to date information, consult
356
358
the following official Oracle resources:
357
359
358
- - `JConsole documentation <https://www.oracle.com/technical-resources/articles/java/jconsole.html>`__.
360
+ - `JConsole documentation <https://www.oracle.com/technical-resources/articles/java/jconsole.html>`__
359
361
- `JMX documentation <https://docs.oracle.com/javase/tutorial/jmx/index.html>`__
360
362
361
363
The following code snippet adds a ``JMXConnectionPoolListener`` to a
@@ -398,7 +400,7 @@ following:
398
400
To learn more about JMX and JConsole, see the following resources from
399
401
Oracle:
400
402
401
- - `JConsole Documentation <https://www.oracle.com/technical-resources/articles/java/jconsole.html>`__.
403
+ - `JConsole documentation <https://www.oracle.com/technical-resources/articles/java/jconsole.html>`__.
402
404
- `Monitoring and Management Guide <https://docs.oracle.com/en/java/javase/16/management/monitoring-and-management-using-jmx-technology.html>`__
403
405
404
406
To learn more about the ``JMXConnectionPoolListener`` class, see
0 commit comments