/* ** 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. **/ #ifndef ZABBIX_PREPROC_H #define ZABBIX_PREPROC_H #include "module.h" #include "zbxcacheconfig.h" #include "zbxpreproc.h" #include "zbxstats.h" #define ZBX_PREPROCESSING_BATCH_SIZE 256 /* the following functions are implemented differently for server and proxy */ void zbx_preprocess_item_value(zbx_uint64_t itemid, zbx_uint64_t hostid, unsigned char item_value_type, unsigned char item_flags, AGENT_RESULT *result, zbx_timespec_t *ts, unsigned char state, char *error); void zbx_preprocessor_flush(void); zbx_uint64_t zbx_preprocessor_get_queue_size(void); int zbx_preprocessor_test(unsigned char value_type, const char *value, const zbx_timespec_t *ts, unsigned char state, const zbx_vector_pp_step_ptr_t *steps, zbx_vector_pp_result_ptr_t *results, zbx_pp_history_t *history, char **error); int zbx_preprocessor_get_diag_stats(zbx_uint64_t *preproc_num, zbx_uint64_t *pending_num, zbx_uint64_t *finished_num, zbx_uint64_t *sequences_num, char **error); int zbx_preprocessor_get_top_sequences(int limit, zbx_vector_pp_sequence_stats_ptr_t *sequences, char **error); int zbx_preprocessor_get_usage_stats(zbx_vector_dbl_t *usage, int *count, char **error); void zbx_preprocessor_get_worker_info(zbx_process_info_t *info); #endif /* ZABBIX_PREPROC_H */