Skip to content

Commit 0663d73

Browse files
committed
Added missing ConnectionPoolStatisticsMBean properties in reference documentation.
JAVA-1766
1 parent ac44079 commit 0663d73

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

docs/reference/content/driver-async/reference/management/monitoring.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,9 @@ the following properties:
2626
- `clusterId`: a client-generated unique identifier, required to ensure object name uniqueness in situations where an
2727
application has multiple `MongoClient` instances connected to the same MongoDB server deployment
2828
- `host`: the host name of the server
29-
- `port`: the port the server is listening on
29+
- `port`: the port on which the server is listening
30+
- `minSize`: the minimum allowed size of the pool, including idle and in-use members
31+
- `maxSize`: the maximum allowed size of the pool, including idle and in-use members
32+
- `size`: the current size of the pool, including idle and and in-use members
33+
- `waitQueueSize`: the current size of the wait queue for a connection from this pool
34+
- `checkedOutCount`: the current count of connections that are currently in use

docs/reference/content/driver/reference/management/monitoring.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,9 @@ the following properties:
2626
- `clusterId`: a client-generated unique identifier, required to ensure object name uniqueness in situations where an
2727
application has multiple `MongoClient` instances connected to the same MongoDB server deployment
2828
- `host`: the host name of the server
29-
- `port`: the port the server is listening on
29+
- `port`: the port on which the server is listening
30+
- `minSize`: the minimum allowed size of the pool, including idle and in-use members
31+
- `maxSize`: the maximum allowed size of the pool, including idle and in-use members
32+
- `size`: the current size of the pool, including idle and and in-use members
33+
- `waitQueueSize`: the current size of the wait queue for a connection from this pool
34+
- `checkedOutCount`: the current count of connections that are currently in use

0 commit comments

Comments
 (0)