Skip to content

Commit d7dd4c8

Browse files
committed
NR feedback 1
1 parent 99d7ec8 commit d7dd4c8

File tree

2 files changed

+21
-22
lines changed

2 files changed

+21
-22
lines changed

source/index.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
Specialized Data Formats </data-formats>
2424
Builders </builders>
2525
Run a Command </run-command>
26-
Cluster Monitoring </monitoring>
26+
Monitoring </monitoring>
2727
Security </security>
2828
In-Use Encryption </security/encrypt-fields>
2929
Compatibility </compatibility>

source/monitoring.txt

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
==================
2-
Cluster Monitoring
3-
==================
1+
==========
2+
Monitoring
3+
==========
44

55
.. contents:: On this page
66
:local:
@@ -12,23 +12,25 @@ Overview
1212
--------
1313

1414
In this guide, you can learn how to set up and configure **monitoring** in the
15-
MongoDB Kotlin driver.
15+
{+driver-short+}.
1616

1717
Monitoring is the process of getting information about the activities a running
1818
program performs for use in an application or an application performance
1919
management library.
2020

21-
Monitoring the MongoDB Kotlin driver lets you understand the
22-
driver's resource usage and performance, and can help you make informed
23-
decisions when designing and debugging your application.
21+
Monitoring the {+driver-short+} to monitor cluster, driver command, and
22+
connection pool events. These features help you make informed decisions when
23+
designing and debugging your application.
2424

2525
In this guide you will learn how to perform these tasks:
2626

27-
- :ref:`Monitor different types of events in the MongoDB Kotlin driver <monitoring-monitor-events>`
27+
- :ref:`Monitor specific events by using the {+driver-short+} <monitoring-monitor-events>`
2828
- :ref:`Monitor connection pool events with Java Management Extensions (JMX) and JConsole <monitoring-jmx>`
2929

30-
This guide shows how to use information about the meta activity of the driver.
31-
To learn how to record data transactions, see the :ref:`Monitoring Data Changes <kotlin-sync-change-streams>` page.
30+
.. tip::
31+
32+
This guide shows how to use information about the meta activity of the driver.
33+
To learn how to record data transactions, see the :ref:`Monitoring Data Changes <kotlin-sync-change-streams>` page.
3234

3335
.. _monitoring-monitor-events:
3436

@@ -44,20 +46,17 @@ for listening to a subset of the events that occur when the driver is running.
4446
A listener is a class that performs some action when certain events occur.
4547
A listener's API defines the events it can respond to.
4648

47-
Each method of a listener class represents a response to a certain event. Each
48-
method receives one argument: an object representing the event the method
49-
responds to.
50-
51-
The MongoDB Kotlin driver organizes the events it defines into three categories:
49+
Each method of a listener class represents a response to a certain event, and
50+
accepts as an argument an event object representing the event.
5251

53-
- Command Events
54-
- Server Discovery and Monitoring Events
55-
- Connection Pool Events
52+
The {+driver-short+} organizes the events it defines into three categories:
5653

57-
The following sections show how to monitor each event category.
54+
- Command events
55+
- Server Discovery and Monitoring events
56+
- Connection Pool events
5857

59-
For a full list of the events you can monitor,
60-
`see the event package of the MongoDB Kotlin driver <{+api+}/apidocs/mongodb-driver-core/com/mongodb/event/package-summary.html>`__.
58+
The following sections show how to monitor each event category. For a full list of the events you can monitor,
59+
`see the event package of the {+driver-short+} <{+api+}/com/mongodb/event/package-summary.html>`__.
6160

6261
.. _command-events-kotlin:
6362

0 commit comments

Comments
 (0)