diff options
author | A. Jesse Jiryu Davis <jesse@mongodb.com> | 2019-05-16 14:48:19 -0400 |
---|---|---|
committer | A. Jesse Jiryu Davis <jesse@mongodb.com> | 2019-05-21 16:35:25 -0400 |
commit | f30e70b5d1ebae87f373de108314993e58309739 (patch) | |
tree | 97b5f921d9329cd573fc76d536105c50196d04d2 /src/mongo/client/replica_set_monitor.h | |
parent | db55694f289d99db4f808a44643130818f3048a4 (diff) | |
download | mongo-f30e70b5d1ebae87f373de108314993e58309739.tar.gz |
SERVER-36099 Trim FTDC connection pool stats
Diffstat (limited to 'src/mongo/client/replica_set_monitor.h')
-rw-r--r-- | src/mongo/client/replica_set_monitor.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/client/replica_set_monitor.h b/src/mongo/client/replica_set_monitor.h index a306b1b9547..b28364c6a25 100644 --- a/src/mongo/client/replica_set_monitor.h +++ b/src/mongo/client/replica_set_monitor.h @@ -155,9 +155,10 @@ public: bool contains(const HostAndPort& server) const; /** - * Writes information about our cached view of the set to a BSONObjBuilder. + * Writes information about our cached view of the set to a BSONObjBuilder. If + * forFTDC, trim to minimize its size for full-time diagnostic data capture. */ - void appendInfo(BSONObjBuilder& b) const; + void appendInfo(BSONObjBuilder& b, bool forFTDC = false) const; /** * Returns true if the monitor knows a usable primary from it's interal view. |