127 lines
4.0 KiB
Python
Executable File
127 lines
4.0 KiB
Python
Executable File
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2019 Huawei Technologies Co., Ltd.
|
|
# A-Tune is licensed under the Mulan PSL v1.
|
|
# You can use this software according to the terms and conditions of the Mulan PSL v1.
|
|
# You may obtain a copy of Mulan PSL v1 at:
|
|
# http://license.coscl.org.cn/MulanPSL
|
|
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
|
|
# PURPOSE.
|
|
# See the Mulan PSL v1 for more details.
|
|
# Create: 2019-10-29
|
|
|
|
"""
|
|
The sub class of the monitor, used to collect the nic stat info.
|
|
"""
|
|
|
|
import sys
|
|
import logging
|
|
import subprocess
|
|
import getopt
|
|
import re
|
|
|
|
if __name__ == "__main__":
|
|
sys.path.insert(0, "./../../")
|
|
from monitor.common import *
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class NetStat(Monitor):
|
|
"""To collect the nic stat info"""
|
|
_module = "NET"
|
|
_purpose = "STAT"
|
|
_option = "-n DEV {int} 1"
|
|
|
|
def __init__(self, user=None):
|
|
Monitor.__init__(self, user)
|
|
self.__cmd = "sar"
|
|
self.__interval = 1
|
|
self.decode.__func__.__doc__ = Monitor.decode.__doc__ % (
|
|
"--nic=x, --fields=time/nic/rxpcks/txpcks/rxkBs/txkBs/rxcmps/txcmps/rxmcsts/ifutil")
|
|
|
|
def _get(self, para=None):
|
|
if para is not None:
|
|
opts, args = getopt.getopt(para.split(), None, ['interval='])
|
|
for opt, val in opts:
|
|
if opt in ('--interval'):
|
|
if val.isdigit():
|
|
self.__interval = int(val)
|
|
else:
|
|
err = ValueError(
|
|
"Invalid parameter: {opt}={val}".format(
|
|
opt=opt, val=val))
|
|
logger.error(
|
|
"{}.{}: {}".format(
|
|
self.__class__.__name__,
|
|
sys._getframe().f_code.co_name,
|
|
str(err)))
|
|
raise err
|
|
continue
|
|
|
|
output = subprocess.check_output(
|
|
"{cmd} {opt}".format(
|
|
cmd=self.__cmd,
|
|
opt=self._option.format(
|
|
int=self.__interval)).split())
|
|
return output.decode()
|
|
|
|
def decode(self, info, para):
|
|
if para is None:
|
|
return info
|
|
|
|
keyword = {"time": 0,
|
|
"nic": 1,
|
|
"rxpcks": 2,
|
|
"txpcks": 3,
|
|
"rxkBs": 4,
|
|
"txkBs": 5,
|
|
"rxcmps": 6,
|
|
"txcmps": 7,
|
|
"rxmcsts": 8,
|
|
"ifutil": 9}
|
|
|
|
keys = []
|
|
nic = "e.*?"
|
|
ret = ""
|
|
|
|
opts, args = getopt.getopt(para.split(), None, ['nic=', 'fields='])
|
|
for opt, val in opts:
|
|
if opt in ('--nic'):
|
|
nic = val
|
|
continue
|
|
if opt in ('--fields'):
|
|
keys.append(keyword[val])
|
|
continue
|
|
|
|
pattern = re.compile(
|
|
"^(\d.*?)\ {1,}(" +
|
|
nic +
|
|
")\ {1,}(\d*\.?\d*)\ {1,}(\d*\.?\d*)\ {1,}(\d*\.?\d*)\ {1,}(\d*\.?\d*)\ {1,}(\d*\.?\d*)\ {1,}(\d*\.?\d*)\ {1,}(\d*\.?\d*)\ {2,}(\d*\.?\d*)",
|
|
re.ASCII | re.MULTILINE)
|
|
searchObj = pattern.findall(info)
|
|
if len(searchObj) == 0:
|
|
err = LookupError("Fail to find data for {}".format(nic))
|
|
logger.error(
|
|
"{}.{}: {}".format(
|
|
self.__class__.__name__,
|
|
sys._getframe().f_code.co_name,
|
|
str(err)))
|
|
raise err
|
|
|
|
for i in keys:
|
|
ret = ret + " " + searchObj[-1][i]
|
|
return ret
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) != 3:
|
|
print('usage: ' + sys.argv[0] + ' fmt path')
|
|
sys.exit(-1)
|
|
ct = NetStat("UT")
|
|
ct.report(
|
|
sys.argv[1],
|
|
sys.argv[2],
|
|
"--interval=2;--nic=lo --fields=txkBs --fields=rxkBs")
|