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.
94 lines
2.8 KiB
94 lines
2.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.
|
|
**/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <winsock.h>
|
|
|
|
#include "zabbix_sender.h"
|
|
|
|
/*
|
|
* This is a simple Zabbix sender utility implemented with
|
|
* Zabbix sender dynamic link library to illustrate the
|
|
* library usage.
|
|
*
|
|
* See zabbix_sender.h header file for API specifications.
|
|
*
|
|
* This utility can be built in Microsoft Windows 32 bit build
|
|
* environment with the following command: nmake /f Makefile
|
|
*
|
|
* To run this utility ensure that zabbix_sender.dll is
|
|
* available (either in current directory or in windows/system
|
|
* directories or in a directory defined in PATH variable)
|
|
*/
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if (5 == argc)
|
|
{
|
|
char *result = NULL;
|
|
zabbix_sender_info_t info;
|
|
zabbix_sender_value_t value = {argv[2], argv[3], argv[4]};
|
|
int response;
|
|
WSADATA sockInfo;
|
|
|
|
if (0 != WSAStartup(MAKEWORD(2, 2), &sockInfo))
|
|
{
|
|
printf("Cannot initialize Winsock DLL\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
/* send one value to the argv[1] IP address and the default trapper port 10051 */
|
|
if (-1 == zabbix_sender_send_values(argv[1], 10051, NULL, &value, 1, &result))
|
|
{
|
|
printf("sending failed: %s\n", result);
|
|
}
|
|
else
|
|
{
|
|
printf("sending succeeded:\n");
|
|
|
|
/* parse the server response */
|
|
if (0 == zabbix_sender_parse_result(result, &response, &info))
|
|
{
|
|
printf(" response: %s\n", 0 == response ? "success" : "failed");
|
|
printf(" info from server: \"processed: %d; failed: %d; total: %d; seconds spent: %lf\"\n",
|
|
info.total - info.failed, info.failed, info.total, info.time_spent);
|
|
}
|
|
else
|
|
printf(" failed to parse server response\n");
|
|
}
|
|
|
|
/* free the server response */
|
|
zabbix_sender_free_result(result);
|
|
while (0 == WSACleanup());
|
|
}
|
|
else
|
|
{
|
|
printf("Simple zabbix_sender implementation with zabbix_sender library\n\n");
|
|
printf("usage: %s <server> <hostname> <key> <value>\n\n", argv[0]);
|
|
printf("Options:\n");
|
|
printf(" <server> Hostname or IP address of Zabbix server\n");
|
|
printf(" <hostname> Host name\n");
|
|
printf(" <key> Item key\n");
|
|
printf(" <value> Item value\n");
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|