说明:Simplecheck一般用于被监控的对象上无法安装客户端的情况,通过检测网络通讯状态及端口状态来监控对象的存活情况。1、Simplecheck的几个KEYicmpping[<target>,<packets>,<interval>,<size>,<timeout>]ChecksifserverisaccessiblebyICMPpin..
分类:
其他好文 时间:
2014-11-26 11:39:39
阅读次数:
318
问题描述:
Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).
You may assume that the intervals were initially sorted according to their start time...
分类:
其他好文 时间:
2014-11-25 23:40:58
阅读次数:
248
Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially...
分类:
其他好文 时间:
2014-11-24 20:46:06
阅读次数:
180
/** * Created by Answer1215 on 11/22/2014. */function AppCtrl($q, $interval) { var vm = this; vm.cancel = cancel; var timer = $interval(funct...
分类:
Web程序 时间:
2014-11-22 07:04:33
阅读次数:
143
今天看到这么一段代码:do { $res = $this->tasks_db->get_one(array('taskid' => $taskid)); // 得到下次运行时间 $interval = $res['tasktime'] * 60; //检测本次任务开关,0为关...
分类:
其他好文 时间:
2014-11-21 12:28:17
阅读次数:
157
---11g的是 周一到周五 22:00-2:00 周六周日 6:00-4:00
SELECT w.window_name, w.repeat_interval, w.duration, w.enabled
FROM dba_autotask_window_clients c, dba_scheduler_windows w
WHERE c.window_name = w.window_na...
分类:
数据库 时间:
2014-11-20 20:29:04
阅读次数:
284
selectDATE_FORMAT(date,‘%Y%u‘)weeks,DATE_ADD(date,INTERVAL-WEEKDAY(date)DAY)frometl_armory_site_type_num
分类:
数据库 时间:
2014-11-20 15:36:52
阅读次数:
224
对一个Linux进程进行监控,使用Bash脚本实现。
使用ps命令对进程进行监控,使用循环加睡眠时间实现连续监控。
用法:
psmonitor.sh -p [pid] -d [interval] -n [statistics count]
参数:
-p 监控的进程ID
-d 读性能数据间隔
-n 统计次数,达到该次数,自动退出
#!/bin/bash
interval=0
co...
分类:
系统相关 时间:
2014-11-19 01:53:34
阅读次数:
173
看下面的Bash脚本:
#!/bin/bash
interval=0
count=0
pid=""
while getopts "p:d:n" arg
do
case $arg in
p)
pid=$OPTARG
echo "pid: $pid"
;;
...
分类:
其他好文 时间:
2014-11-19 01:53:24
阅读次数:
169
Interval
时间限制:2000 ms | 内存限制:65535 KB
难度:4
描述
There are n(1
Each query contains an integer xi(-100000
输入The first line of input is the number of test case.
For each test case,...
分类:
编程语言 时间:
2014-11-17 22:51:54
阅读次数:
204