公司最近需要上一套监控系统,之前的监控系统是 Nagios。我之前也没接触过 Nagios,后来就调研了一番。对比了市面上比较火的几款监控系统,还是感觉 Zabbix 更出色一点。 下面是 Zabbix Server 和 Zabbix Agent 的部署流程。环境: OS Version:...
分类:
其他好文 时间:
2014-10-16 18:24:13
阅读次数:
394
原文:http://www.codeguru.com/cpp/cpp/cpp_mfc/callbacks/article.php/c10557/Callback-Functions-Tutorial.htmCallback Functions TutorialIntroductionIf you a...
分类:
编程语言 时间:
2014-10-14 23:55:09
阅读次数:
403
1. No const constructorUnlike other member functions, constructors may not be declared as const . When we create a const object of a class type, the o...
分类:
其他好文 时间:
2014-10-14 17:43:39
阅读次数:
214
1. exit handler. atexit(void (*func)(void)); #automatically called by exit() exit() calls these functions in reverse order of their registeration....
分类:
其他好文 时间:
2014-10-14 17:20:49
阅读次数:
238
Expression Bodied Function 可以用在:
methodsuser-defined operatorstype conversionsread-only properties indexers
看以下的例子:
public class RgbColor(int r, int g, int b)
{
public int Red { get; } = r;
p...
正常安装完zabbix后,登录后zabbix监控报错zabbix server is not running: the information displayed may not be current, 下面的几种情况都有可能引起这个错误, 1. selinux是否关闭。一定要关闭这个,开启sel...
分类:
其他好文 时间:
2014-10-14 13:47:49
阅读次数:
265
Given a string, write a routine that converts the string to a long, without using the built in functions that would do this. Describe what (if any) li...
分类:
其他好文 时间:
2014-10-14 13:01:28
阅读次数:
201
一 time包
sleep([float time]) 延迟一段以浮点数表示的秒数
time包基于C语言的库函数(library functions)。
Python的解释器通常是用C编写的,Python的一些函数也会直接调用C语言的库函数。
time.time()获得当前时间,返回float型, 单位:秒
time.clock()在UNIX系统上,它返回的是“进程时间”...
分类:
编程语言 时间:
2014-10-14 11:04:08
阅读次数:
197
以下内容主要摘自[1,2](1)In javascript,functions are first-class objects, which means functions can be used in a first-class manner like objects, since they ar...
分类:
编程语言 时间:
2014-10-14 00:49:27
阅读次数:
290
Linux提供了丰富的帮助手册,当你需要查看某个命令的参数时不必到处上网查找,只要man一下即可。
Linux 的man手册共有以下几个章节:
1、Standard commands (标准命令)
2、System calls (系统调用)
3、Library functions (库函数)
4、Special devices (设备说明)
5、File formats (文件格式...
分类:
系统相关 时间:
2014-10-11 18:49:55
阅读次数:
177