1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
** Zabbix
** Copyright (C) 2001-2014 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_PROXY_H
#define ZABBIX_PROXY_H
#include "zbxjson.h"
#include "comms.h"
#define ZBX_PROXYMODE_ACTIVE 0
#define ZBX_PROXYMODE_PASSIVE 1
#define ZBX_MAX_HRECORDS 1000
#define AGENT_VALUE struct zbx_agent_value_t
AGENT_VALUE
{
zbx_timespec_t ts;
char host_name[HOST_HOST_LEN_MAX];
char key[ITEM_KEY_LEN * 4 + 1];
char *value;
char *source;
zbx_uint64_t lastlogsize;
int mtime;
int timestamp;
int severity;
int logeventid;
unsigned char state;
};
int get_active_proxy_id(struct zbx_json_parse *jp, zbx_uint64_t *hostid, char *host, char **error);
void update_proxy_lastaccess(const zbx_uint64_t hostid);
int get_proxyconfig_data(zbx_uint64_t proxy_hostid, struct zbx_json *j, char **error);
void process_proxyconfig(struct zbx_json_parse *jp_data);
int get_host_availability_data(struct zbx_json *j);
void process_host_availability(struct zbx_json_parse *jp_data);
int proxy_get_hist_data(struct zbx_json *j, zbx_uint64_t *lastid);
int proxy_get_dhis_data(struct zbx_json *j, zbx_uint64_t *lastid);
int proxy_get_areg_data(struct zbx_json *j, zbx_uint64_t *lastid);
void proxy_set_hist_lastid(const zbx_uint64_t lastid);
void proxy_set_dhis_lastid(const zbx_uint64_t lastid);
void proxy_set_areg_lastid(const zbx_uint64_t lastid);
void calc_timestamp(const char *line, int *timestamp, const char *format);
void process_mass_data(zbx_sock_t *sock, zbx_uint64_t proxy_hostid,
AGENT_VALUE *values, size_t value_num, int *processed);
int process_hist_data(zbx_sock_t *sock, struct zbx_json_parse *jp,
const zbx_uint64_t proxy_hostid, char *info, int max_info_size);
void process_dhis_data(struct zbx_json_parse *jp);
void process_areg_data(struct zbx_json_parse *jp, zbx_uint64_t proxy_hostid);
void lld_process_discovery_rule(zbx_uint64_t lld_ruleid, char *value, zbx_timespec_t *ts);
int proxy_get_history_count();
#endif
|