.\" Man page generated from reStructuredText. . .TH "MONGOC_BASIC_TROUBLESHOOTING" "3" "Jun 04, 2021" "1.17.6" "libmongoc" .SH NAME mongoc_basic_troubleshooting \- Basic Troubleshooting . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .SH TROUBLESHOOTING CHECKLIST .sp The following is a short list of things to check when you have a problem. .INDENT 0.0 .IP \(bu 2 Did you call \fBmongoc_init()\fP in \fBmain()\fP? If not, you will likely see a segfault. .IP \(bu 2 Have you leaked any clients or cursors as can be found with \fBmongoc\-stat \fP? .IP \(bu 2 Have packets been delivered to the server? See egress bytes from \fBmongoc\-stat \fP\&. .IP \(bu 2 Does \fBvalgrind\fP show any leaks? Ensure you call \fBmongoc_cleanup()\fP at the end of your process to cleanup lingering allocations from the MongoDB C driver. .IP \(bu 2 If compiling your own copy of MongoDB C Driver, consider using the cmake option \fB\-DENABLE_TRACING=ON\fP to enable function tracing and hex dumps of network packets to \fBSTDERR\fP and \fBSTDOUT\fP\&. .UNINDENT .SH PERFORMANCE COUNTERS .sp The MongoDB C driver comes with an optional unique feature to help developers and sysadmins troubleshoot problems in production. Performance counters are available for each process using the driver. If available, the counters can be accessed outside of the application process via a shared memory segment. This means that you can graph statistics about your application process easily from tools like Munin or Nagios. Your author often uses \fBwatch \-\-interval=0.5 \-d mongoc\-stat $PID\fP to monitor an application. .sp Performance counters are only available on Linux platforms supporting shared memory segments. On supported platforms they are enabled by default. Applications can be built without the counters by specifying the cmake option \fB\-DENABLE_SHM_COUNTERS=OFF\fP\&. Additionally, if performance counters are already compiled, they can be disabled at runtime by specifying the environment variable \fBMONGOC_DISABLE_SHM\fP\&. .sp Performance counters keep track of the following: .INDENT 0.0 .IP \(bu 2 Active and Disposed Cursors .IP \(bu 2 Active and Disposed Clients, Client Pools, and Socket Streams. .IP \(bu 2 Number of operations sent and received, by type. .IP \(bu 2 Bytes transferred and received. .IP \(bu 2 Authentication successes and failures. .IP \(bu 2 Number of wire protocol errors. .UNINDENT .sp To access counters for a given process, simply provide the process id to the \fBmongoc\-stat\fP program installed with the MongoDB C Driver. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C $ mongoc\-stat 22203 Operations : Egress Total : The number of sent operations. : 13247 Operations : Ingress Total : The number of received operations. : 13246 Operations : Egress Queries : The number of sent Query operations. : 13247 Operations : Ingress Queries : The number of received Query operations. : 0 Operations : Egress GetMore : The number of sent GetMore operations. : 0 Operations : Ingress GetMore : The number of received GetMore operations. : 0 Operations : Egress Insert : The number of sent Insert operations. : 0 Operations : Ingress Insert : The number of received Insert operations. : 0 Operations : Egress Delete : The number of sent Delete operations. : 0 Operations : Ingress Delete : The number of received Delete operations. : 0 Operations : Egress Update : The number of sent Update operations. : 0 Operations : Ingress Update : The number of received Update operations. : 0 Operations : Egress KillCursors : The number of sent KillCursors operations. : 0 Operations : Ingress KillCursors : The number of received KillCursors operations. : 0 Operations : Egress Msg : The number of sent Msg operations. : 0 Operations : Ingress Msg : The number of received Msg operations. : 0 Operations : Egress Reply : The number of sent Reply operations. : 0 Operations : Ingress Reply : The number of received Reply operations. : 13246 Cursors : Active : The number of active cursors. : 1 Cursors : Disposed : The number of disposed cursors. : 13246 Clients : Active : The number of active clients. : 1 Clients : Disposed : The number of disposed clients. : 0 Streams : Active : The number of active streams. : 1 Streams : Disposed : The number of disposed streams. : 0 Streams : Egress Bytes : The number of bytes sent. : 794931 Streams : Ingress Bytes : The number of bytes received. : 589694 Streams : N Socket Timeouts : The number of socket timeouts. : 0 Client Pools : Active : The number of active client pools. : 1 Client Pools : Disposed : The number of disposed client pools. : 0 Protocol : Ingress Errors : The number of protocol errors on ingress. : 0 Auth : Failures : The number of failed authentication requests. : 0 Auth : Success : The number of successful authentication requests. : 0 .ft P .fi .UNINDENT .UNINDENT .SH SUBMITTING A BUG REPORT .sp Think you\(aqve found a bug? Want to see a new feature in the MongoDB C driver? Please open a case in our issue management tool, JIRA: .INDENT 0.0 .IP \(bu 2 \fI\%Create an account and login\fP\&. .IP \(bu 2 Navigate to \fI\%the CDRIVER project\fP\&. .IP \(bu 2 Click \fICreate Issue\fP \- Please provide as much information as possible about the issue type and how to reproduce it. .UNINDENT .sp Bug reports in JIRA for all driver projects (i.e. CDRIVER, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are \fIpublic\fP\&. .SH AUTHOR MongoDB, Inc .SH COPYRIGHT 2017-present, MongoDB, Inc .\" Generated by docutils manpage writer. .