nmon 是 Nigel's performance Monitor for Linux on POWER, x86, x86_64, Mainframe & now ARM (Raspberry Pi) 的缩写,意思是 Nigel(nmon 的作者是 Nigel Griffiths) 的 Linux 性能检测器。这一系统管理员、调谐器、基准测试工具将提供给你大量重要的性能信息。它可以有两种方式输...
分类:
系统相关 时间:
2014-12-04 18:02:30
阅读次数:
380
脚本名:monitor_port.pl
作用:扫描特定端口是否正常
脚本:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
...
分类:
其他好文 时间:
2014-12-04 14:05:39
阅读次数:
171
SQLServer监视(Monitoring)体系架构在SQLServer的日常管理中,让SQLServer高效运行,且性能良好,是DBA需要做的事。DBA需要了解日常的性能运行情况,对性能进行分析和调优,需要对线上环境部署监控。监视(Monitoring)是SQLServer数据库引擎的一大主题,了解整个数据库引擎..
分类:
数据库 时间:
2014-12-03 19:39:17
阅读次数:
145
作者:zhanhailiang 日期:2014-12-02
1. INFO
info指令返回服务器相关信息,包括:
server: General information about the Redis server
clients: Client connections section
memory: Memory consumption related inf...
分类:
其他好文 时间:
2014-12-03 00:31:10
阅读次数:
282
SQLServer环形缓冲区(RingBuffer)--RING_BUFFER_SCHEDULER_MONITOR获取SQL进程的CPU利用率环形缓冲区存储了有关CPU利用率的信息。这些信息每分钟更新一次。所以你可以跟踪到4小时15分钟内给定时间点的CPU利用率。下面的输出显示了SQL实例的CPU利用率和其他活动进程的CPU利用..
分类:
数据库 时间:
2014-11-28 18:38:12
阅读次数:
363
Figure 1shows a simple, stand-alone overvoltage detector. The intent of the circuit is to monitor a voltage, VMONITOR, and set the output, VOUT, high ...
分类:
其他好文 时间:
2014-11-28 15:40:19
阅读次数:
237
脚本如下: #!/bin/bash
#author?firxiao
#monitor?IP?change
#date:20141128
ip_old=ip_old.txt???
ip_now=ip_now.txt
mail_sender=xxx@xxx.com????#发件人
mail_user=xxx@xxx.com??????#收...
分类:
其他好文 时间:
2014-11-28 12:51:10
阅读次数:
286
MySQL的事件就像Linux系统上的定时任务,按照设置的时间或者间隔时间执行设置好的任务。如果用SQLyog一类的写存储过程、触发器或者事件会省事一些,例如SQLyog就会生成一个大致的模板: 1 DELIMITER $$ 2 CREATE EVENT `report`.`monitor_user...
分类:
数据库 时间:
2014-11-27 20:12:17
阅读次数:
367
select * from v$session where schemaname='SCOTT';
select p.spid
from v$session s, v$process p
where s.paddr = p.addr
and s.sid = &1
and s.serial# = &2;
exec dbms_monitor.sessio...
分类:
数据库 时间:
2014-11-25 23:40:09
阅读次数:
244