您好,登錄后才能下訂單哦!
因公司服務器上部署應用較多,在有大并發訪問、業務邏輯有問題的情況下反復互相調用或者有異常流量訪問的時候,需要對業務應用進行故障定位,所以利用python調用iftop命令來獲取應用進程流量,結合zabbix,可幫助定位分析問題。,以下是腳本內容,大概思路是:
#!/usr/bin/python
#coding=utf-8
#針對業務監聽的端口流量進行統計,忽略對隨機端口流量統計
#若針對突然流量增大,找到其進程進行告警,可以不做統計,獲取到流量進行判斷,若大于多少閥值,則輸出
import os
def change_unit(unit):
if "Mb" in unit:
flow = float(unit.strip("Mb")) * 1024
return flow
elif "Kb" in unit:
flow = float(unit.strip("Kb"))
return flow
elif "b" in unit:
flow = float(unit.strip("b")) / 1024
return flow
def get_flow():
#iftop參數:-t 使用不帶ncurses的文本界面,-P顯示主機以及端口信息,-N只顯示連接端口號,不顯示端口對應的服務名稱,-n 將輸出的主機信息都通過IP顯示,不進行DNS解析,-s num num秒后打印一次文本輸出然后退出
mes = os.popen("iftop -t -P -N -n -s 2 2>/dev/null |grep -A 1 -E '^ [0-9]'").read()
#以換行符進行分割
iftop_list = mes.split("\n")
count = len(iftop_list)
#定義字典 存放主機信息和進出流量
flow_dict = {}
#定義列表,存放主機信息
host_ips = []
# 把主機加入數組,新的主機查詢是否在列表里面,沒有的話,把主機信息加入host_ips,并新組裝一個字典值加入flow_dict字典,如果host_ips存在主機信息,則把字典值取出來,重新計算增加流量數值,再加入字典flow_dict
#這里的 count/2 是iftop獲取到的數據,是進出流量為一組,則有count/2 個流量連接,可執行os.popen 里面的iftop命令即可明白
for i in range(count/2):
flow_msg = ""
#獲取發送的ip地址(本地ip地址),端口(本地端口),發送的流量,以換行符分割后,數據偶數位為本地發送流量信息
location_li_s = iftop_list[i*2]
send_flow_lists = location_li_s.split(" ")
#去空元素
while '' in send_flow_lists:
send_flow_lists.remove('')
host_ip = send_flow_lists[1]
send_flow = send_flow_lists[3]
send_flow_float = change_unit(send_flow)
#print send_flow_lists
#獲取接收的流量
location_li_r = iftop_list[i*2+1]
rec_flow_lists = location_li_r.split(" ")
while '' in rec_flow_lists:
rec_flow_lists.remove('')
rec_flow = rec_flow_lists[3]
rec_flow_float = change_unit(rec_flow)
#去掉本地linux 大于10000的隨機端口,因為公司業務應用無大于10000,也可把這里去掉
port = host_ip.split(":")[1]
if int(port) < 10000:
#主機信息若不存在列表則加入host_ips,若存在,則字典取值,對進出流量進行相加
if host_ip not in host_ips:
host_ips.append(host_ip)
flow_msg = str(float('%2.f' % send_flow_float)) + ":" + str(float('%.2f' % rec_flow_float))
flow_dict[host_ip]=flow_msg
else:
flow_dict_msg = flow_dict[host_ip]
flow_dict_msg_li = flow_dict_msg.split(":")
#獲取字典里的發送接收流量
flow_dict_msg_send = float(flow_dict_msg_li[0])
flow_dict_msg_rec = float(flow_dict_msg_li[1])
#字典里面的發送接收流量和獲取到的新流量相加
flow_add_send = flow_dict_msg_send + send_flow_float
flow_add_rec = flow_dict_msg_rec + rec_flow_float
#把新得出的結果,更新到字典
flow_msg = str(float('%.2f' % flow_add_send)) + ":" + str(float('%.2f' % flow_add_rec))
flow_dict[host_ip]=flow_msg
for key in flow_dict:
flow_li = flow_dict[key].split(":")
#flow_li[0]為發送流量,flow_li[1]為接收流量,單位是Kb
print key + "|" + flow_li[0] + "|" + flow_li[1]
get_flow()
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。