/* ** Zabbix ** Copyright (C) 2001-2023 Zabbix SIA ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **/ #include "preproc_proxy.h" #include "zbxpreproc.h" #include "zbxtime.h" #include "zbxcachehistory.h" void preproc_flush_value_proxy(zbx_pp_manager_t *manager, zbx_uint64_t itemid, unsigned char value_type, unsigned char flags, zbx_variant_t *value, zbx_timespec_t ts, zbx_pp_value_opt_t *value_opt) { ZBX_UNUSED(manager); zabbix_log(LOG_LEVEL_DEBUG, "In %s()", __func__); zbx_dc_add_history_variant(itemid, value_type, flags, value, ts, value_opt); zabbix_log(LOG_LEVEL_DEBUG, "End of %s()", __func__); }