91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nagios監控流量

發布時間:2020-07-29 11:45:56 來源:網絡 閱讀:625 作者:longruivictor 欄目:移動開發

監控機:192.168.10.133

被監控機:192.168.10.107

系統:centos 6.5_x64

1、在監控端安裝和測試snmp


2、獲取被監控端的網卡信息(用于腳本中的-I參數)

[root@wqk1 mnt]# ./check_traffic.sh -V 2c -C public -H 192.168.10.107 -L

List Interface for host 192.168.10.107.

Interface index 1 orresponding to  lo

Interface index 2 orresponding to  eth0  //使用這個網卡接口

Interface index 3 orresponding to  sit0

3、在監控端和被監控端放置腳本

cd /usr/local/nagios/libexec

chmod +x /usr/local/nagios/libexec/check_traffic.sh

./check_traffic.sh -h

./check_traffic.sh -V 2c -C public -H 192.168.10.107 -I 2 -w 200,300 -c 400,500 -K –B 定義in和out值分別超過200K、300K警告,超過400K,500k嚴重警告。(第一次運行沒有輸出,30s后第二次運行才有輸出;-I后面的2對應 上面獲得的被監控端的網卡信息)

OK - It's the first time for this plugins run. We'll get the data from the next time.

第一次執行,history data file(/var/tmp/check_traffic_${Host}_${Interface}.hist_dat)不存在,因此會由此提示,可以忽略,再執行一次可以正正常獲取

4、在監控端command文件里面定義check_traffic命令

# 'check_traffic' command definition

define command{

    command_name  check_traffic

    command_line $USER1$/check_traffic.sh -V 2c -C  public -H $HOSTADDRESS$ -I $ARG1$ -w $ARG2$ -c $ARG3$ -K -B  監控單位可以自定義

}

5、在監控端localhost.cfg中定義主機

vim /usr/local/nagios/etc/objects/localhost.cfg

define host {

       host_name       wqk_centos-107

       alias           centos-107

       address         192.168.10.107

       check_command   check-host-alive

       notification_options    d,u,r

       check_interval  1

       max_check_attempts      2

       contact_groups  admins

       notification_interval   10

       notification_period     24x7

}

6、在監控端localhost.cfg中定義服務

vim /usr/local/nagios/etc/objects/localhost.cfg

define service {

       host_name       wqk_centos-107

       service_description     check_traffic

       check_period    24x7

       normal_check_interval   2

       retry_check_interval    1

       max_check_attempts      5

       notification_period     24x7

       notification_options    w,u,c,r

       check_command     check_nrpe!check_traffic  //與command文件中的名字一樣

7、檢查測試

cd /usr/local/nagios/libexec

/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg

8、重啟服務

service nagios restart

******************

1、在被監控端安裝和測試snmp

參考:http://151wqooo.blog.51cto.com/2610898/1176730

2、插件

cd /usr/local/nagios/libexec

chmod +x /usr/local/nagios/libexec/check_traffic.sh

3、定義命令

編輯nrpe配置文件:

vim /usr/local/nagios/etc/nrpe.cfg

添加:

command[check_traffic]=/usr/local/nagios/libexec/check_traffic.sh -V 2c -C public -H 127.0.0.1 -I 2 -w 200,300 -c 400,500 -K –B

4、重啟服務

ps aux | grep nrpe

kill掉nrpe 進程

/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d  //啟動nrpe服務

5、遠程測試

在監控端

cd /usr/local/nagios/libexec

./check_nrpe -H 192.168.10.107 -c check_traffic

The check interval must greater than 30 Seconds. But now it's 1. Please retry it later.

[root@wqk1 libexec]# ./check_nrpe -H 192.168.10.107 -c check_traffic

OK - The Traffic In is 0.0KB, Out is 0.0KB, Total is 0.0KB. The Check Interval is 60s |In=0.0KB;200;400;0;0 Out=0.0KB;300;500;0;0 Total=0.0KB;500;900;0;0 Interval=60s;1200;1800;0;0

第一次運行沒有輸出,30s后第二次運行才有輸出

[root@wqk1 mnt]# ./check_traffic.sh -V 2c -C public -H 192.168.10.107 -I 2 -w 200,300 -c 400,500 -K –B

OK - The Traffic In is 1Kbps, Out is 0.0Kbps, Total is 1Kbps. The Check Interval is 1165s |In=1Kbps;200;400;0;0 Out=0.0Kbps;300;500;0;0 Total=1Kbps;500;900;0;0 Interval=1165s;1200;1800;0;0

[root@wqk1 mnt]# ./check_traffic.sh -V 2c -C public -H 192.168.10.107 -I 2 -w 0,0 -c 400,500 -K –B

Warning - The Traffic In is 0.0Kbps, Out is 0.0Kbps, Total is 0.0Kbps. The Check Interval is 54s |In=0.0Kbps;0;400;0;0 Out=0.0Kbps;0;500;0;0 Total=0.0Kbps;0;900;0;0 Interval=54s;1200;1800;0;0

[root@wqk1 mnt]# ./check_traffic.sh -V 2c -C public -H 192.168.10.107 -I 2 -w 300,400 -c 400,500 -K –B

OK - The Traffic In is 0.0Kbps, Out is 0.0Kbps, Total is 0.0Kbps. The Check Interval is 68s |In=0.0Kbps;300;400;0;0 Out=0.0Kbps;400;500;0;0 Total=0.0Kbps;700;900;0;0 Interval=68s;1200;1800;0;0

[root@wqk1 mnt]# ./check_traffic.sh -V 2c -C public -H 192.168.10.107 -I 2 -w 500,600 -c 800,900 -K –B

OK - The Traffic In is 0.0Kbps, Out is 0.0Kbps, Total is 0.0Kbps. The Check Interval is 68s |In=0.0Kbps;500;800;0;0 Out=0.0Kbps;600;900;0;0 Total=0.0Kbps;1100;1700;0;0 Interval=68s;1200;1800;0;0

對比紅色數字字體——為監控設置的閥值,后面為實際流量值,這就是監控點。

==================

執行命令報錯:

./check_nrpe -H 192.168.10.249 -c check_traffic -t 30

Unknown - Read or Write File /var/tmp/check_traffic_127.0.0.1_2.hist_dat_root__64 Error with user uid=500(nagios) gid=500(nagios) groups=500(nagios) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023.


解決:

是因為以非nagios用戶身份,手動測試執行過該腳本(也就是command[check_traffic]=/usr/local/nagios/libexec/check_traffic.sh -V 2c -C public -H ***.***.***.*** -I 2 -w 200,300 -c 400,500 -K -B這個操作),請在正式使用該腳本前,刪除被監控端/var/tmp下對應測試生成的/var/tmp/check_traffic_${Host}_${Interface}.hist_dat文件,否則會造成nagios用戶無法讀寫該文件的錯誤

===================

check_traffic.sh只能監控到某一個網卡的全部流量,一旦nagios流量過高,出現警告,如何排查那個進程所占用的流量

可以使用nethogs工具,可以監控某塊網卡上每個進程的流量,可以使用nethogs工具自行寫個腳本,監控你所關心的進程流量,配合check_traffic.sh插件使用


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴和县| 银川市| 遵化市| 始兴县| 平江县| 离岛区| 筠连县| 鹤山市| 武冈市| 德庆县| 齐河县| 沁水县| 青海省| 苍梧县| 漳州市| 开鲁县| 合阳县| 嵊州市| 沈阳市| 施甸县| 麻阳| 长宁区| 孝感市| 伊金霍洛旗| 虎林市| 梁河县| 扬中市| 静安区| 海安县| 五大连池市| 逊克县| 沿河| 科尔| 嘉义县| 九龙坡区| 宜宾市| 夏邑县| 桓台县| 兴和县| 平昌县| 长丰县|