mongoc_structured_log_opts_set_max_document_length

Synopsis

bool
mongoc_structured_log_opts_set_max_document_length (mongoc_structured_log_opts_t *opts,
                                                    size_t max_document_length);

Sets a maximum length for BSON documents that appear serialized in JSON form as part of a structured log message.

Serialized JSON will be truncated at this limit, interpreted as a count of UTF-8 encoded bytes. Truncation will be indicated with a ... suffix, the length of which is not included in the max document length. If truncation at the exact indicated length would split a valid UTF-8 sequence, we instead truncate the document earlier at the nearest boundary between code points.

Parameters

Returns

Returns true on success, or false if the supplied maximum length is too large.

SEE ALSO:

Structured Logging
mongoc_structured_log_opts_set_max_document_length_from_env()

Author

MongoDB, Inc

Info

Feb 06, 2025 1.30.0 libmongoc