-
Problem report
-
Resolution: Fixed
-
Trivial
-
None
-
None
-
Sprint 75 (Apr 2021), Sprint 76 (May 2021)
-
1
The following code is used to build list of fields to skip:
if (NULL == table_items) { table_items = DBget_table("items"); /* do not update existing lastlogsize and mtime fields */ zbx_vector_ptr_create(&skip_fields); zbx_vector_ptr_append(&skip_fields, (void *)DBget_field(table_items, "lastlogsize")); zbx_vector_ptr_append(&skip_fields, (void *)DBget_field(table_items, "mtime")); zbx_vector_ptr_sort(&skip_fields, ZBX_DEFAULT_PTR_COMPARE_FUNC); }
However the lastlogsize/mtime fields were moved to item_rtdata so the skip_fields vector will contain NULLs.
- duplicates
-
ZBXNEXT-6593 Agent re-read log files
- Closed