You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.8 KiB

/*
** 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_STATS_H
#define ZABBIX_STATS_H
#include "zbxalgo.h"
#include "zbxcomms.h"
#include "zbxjson.h"
typedef void (*zbx_zabbix_stats_ext_get_func_t)(struct zbx_json *json, const void *arg);
typedef struct
{
const void *arg;
zbx_zabbix_stats_ext_get_func_t stats_ext_get_cb;
}
zbx_stats_ext_func_entry_t;
ZBX_PTR_VECTOR_DECL(stats_ext_func, zbx_stats_ext_func_entry_t *)
void zbx_init_library_stats(zbx_get_program_type_f get_program_type);
void zbx_register_stats_ext_func(zbx_zabbix_stats_ext_get_func_t stats_ext_get_cb, const void *arg);
void zbx_register_stats_data_func(zbx_zabbix_stats_ext_get_func_t stats_ext_get_cb, const void *arg);
void zbx_zabbix_stats_get(struct zbx_json *json, int config_startup_time);
/* the process statistics */
typedef struct
{
double busy_max;
double busy_min;
double busy_avg;
double idle_max;
double idle_min;
double idle_avg;
int count;
}
zbx_process_info_t;
typedef void (*zbx_zabbix_stats_procinfo_func_t)(zbx_process_info_t *info);
void zbx_register_stats_procinfo_func(int proc_type, zbx_zabbix_stats_procinfo_func_t procinfo_cb);
#endif