:orphan: .. index:: pair: struct; log_msg_ptr .. _doxid-structlog__msg__ptr: struct log_msg_ptr ================== .. toctree:: :hidden: Overview ~~~~~~~~ Structure that is stored in the tree of log nodes instead of :ref:`log_msg ` structure for each regular log message. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct log_msg_ptr { // fields off_t :ref:`offset`; uint32_t :ref:`timestamp`[2]; }; .. _details-structlog__msg__ptr: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Structure that is stored in the tree of log nodes instead of :ref:`log_msg ` structure for each regular log message. It is used to reduce memory consumption: full log message is loaded to memory from file only when we need to process it, and memory is released as soon as we end with it. Fields ------ .. index:: pair: variable; offset .. _doxid-structlog__msg__ptr_1a21ff783c680e8a54dbb7fbb2e5ba13c5: .. ref-code-block:: cpp :class: doxyrest-title-code-block off_t offset At which offset in raw log file we can find message referenced by this structure .. index:: pair: variable; timestamp .. _doxid-structlog__msg__ptr_1aabb8ec5aa677cf1db710741354bd0cb4: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t timestamp[2] Timestamp of referenced log message