我有以下代码:
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <unistd.h>
int main()
{
time_t result;
char hostname[10] = "ws45new";
char graphite[10] = "127.0.0.1";
char buf[1024];
int n = 0;
int num = 0;
int graphiteport = 2003;
while (1 == 1)
{
result = time(NULL);
n = n + 1;
if (n >= 100)
n = 0;
printf("\n %d", n);
// snprintf(buf, sizeof(buf), "echo \"stats.ws45new.test %d %d \" | nc 127.0.0.1 2003", n, result);
num = sprintf(buf, "echo \"stats.ws45new1.test %d %d \" | nc 127.0.0.1 2003", n, result);
system(buf);
printf("\n %s", buf);
sleep(2);
}
return 0;
}
这应该产生类似锯齿信号的东西,仅用于测试。我的问题是,当我运行程序时,它什么也不做。
如果我按 Ctrl-C 停止它,程序将通过 while 循环迭代一次。它应该向石墨服务器发送一些统计数据,我正在使用它来了解石墨是如何工作的。从我所见,它与串联功能有关sprintf
(snprintf
也以相同的方式起作用)。
如果我注释掉该行,它可以正常工作并生成我想要的数字(以及纪元),但我需要连接才能将所需的动态信息发送到石墨。
如果有人知道为什么这些连接函数不尊重 while 函数,请告诉我,因为我真的很好奇。此外,我对其他建议持开放态度,但我宁愿不深入,比如创建套接字而不使用 nc 和系统,因为我对 C 语言不是那么好。