91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 17.18MB
    文件類型: .gz
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2023-07-21
  • 語言: 其他
  • 標簽: zabbix??

資源簡介

zabbix安裝包...

資源截圖

代碼片段和文件信息

/*
**?Zabbix
**?Copyright?(C)?2001-2018?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?
#include?

#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;

/*?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);
}
else
{
printf(“Simple?zabbix_sender?implementation?with?zabbix_sender?library\n\n“);
printf(“usage:?%s????\n\n“?argv[0]);
printf(“Options:\n“);
printf(“??????Hostname?or?IP?address?of?Zabbix?server\n“);
printf(“????Host?name\n“);
printf(“?????????Item?key\n“);
printf(“???????Item?value\n“);
}

return?EXIT_SUCCESS;
}

評論

共有 條評論