Exemple #1
0
    def __init__(self, server, config='release'):
        self.server = server
        self.client = LepDClient(self.server)
        self.config = config
        self.flame_burner = FlameBurner()

        self.dataCount = 25
Exemple #2
0
def runRawCommand(command, server):

    client = LepDClient(server=server)

    data = client.sendRequest(command)
    data['splitted'] = client.split_to_lines(data['result'])

    return jsonify(data)
Exemple #3
0
def ping(server):

    client = LepDClient(server=server)

    data = {}
    data['connected'] = client.ping()

    return jsonify(data)
Exemple #4
0
    def __init__(self, server, config='release'):
        self.server = server
        self.client = LepDClient(self.server)
        self.config = config

        # this maxDataCount should match the one defined for UI.
        self.maxDataCount = 25

        self.loadBalanceBenchMark = Decimal(40)
Exemple #5
0
def ping_lepd_server(request):

    server = request['server']
    print('received ping: ' + server)

    client = LepDClient(server=server)

    ping_result = client.ping()

    if ping_result:
        emit('lepd.ping.succeeded', {})
    else:
        emit('lepd.ping.failed', {})
Exemple #6
0
 def __init__(self, server, config='release'):
     self.server = server
     self.client = LepDClient(self.server)
     self.config = config
Exemple #7
0
class IOProfiler:
    def __init__(self, server, config='release'):
        self.server = server
        self.client = LepDClient(self.server)
        self.config = config

    def get_status(self):

        start_time = datetime.datetime.now()

        result = self.client.getIostatResult()

        if not result:
            return {}

        end_time = datetime.datetime.now()

        raw_results = result[:]

        headerline = result.pop(0)

        duration = "%.1f" % ((end_time - start_time).total_seconds())
        io_status = {
            'lepdDuration': duration,
            'disks': {},
            'diskCount': 0,
            'ratio': 0
        }

        for line in result:
            if (line.strip() == ""):
                continue

            line_values = line.split()

            device_name = line_values[0]
            io_status['diskCount'] += 1
            io_status['disks'][device_name] = {}

            io_status['disks'][device_name]['rkbs'] = line_values[5]
            io_status['disks'][device_name]['wkbs'] = line_values[6]
            io_status['disks'][device_name]['ratio'] = line_values[-1]

            this_disk_ratio = self.client.toDecimal(line_values[-1])
            if this_disk_ratio > io_status['ratio']:
                io_status['ratio'] = this_disk_ratio

        end_time_2 = datetime.datetime.now()
        duration = "%.1f" % ((end_time_2 - end_time).total_seconds())
        io_status['lepvParsingDuration'] = duration

        response_data = {'data': io_status, 'rawResult': raw_results}
        return response_data

    def get_capacity(self):
        responseLines = self.client.getResponse("GetCmdDf")
        if (len(responseLines) == 0):
            return {}

        responseData = {}
        if (self.config == 'debug'):
            responseData['rawResult'] = responseLines[:]

        diskData = {}
        for resultLine in responseLines:
            if (not resultLine.startswith('/dev/')):
                continue

            lineValues = resultLine.split()
            diskName = lineValues[0][5:]
            diskData[diskName] = {}
            diskData[diskName]['size'] = lineValues[1]
            diskData[diskName]['used'] = lineValues[2]
            diskData[diskName]['free'] = lineValues[3]

            diskData['size'] = lineValues[1]
            diskData['used'] = lineValues[2]
            diskData['free'] = lineValues[3]

        capacity = {}
        capacity['diskTotal'] = diskData['size']
        capacity['diskUsed'] = diskData['used']

        responseData['data'] = capacity
        return responseData

    def get_io_top(self, ioTopLines=None):

        if (ioTopLines == None):
            ioTopLines = self.client.getResponse('GetCmdIotop')

        ioTopResults = {}
        ioTopResults['data'] = {}
        ioTopResults['rawResult'] = ioTopLines[:]
        # print(len(ioTopLines))
        if (len(ioTopLines) < 2):
            return ioTopResults

        dataLineStartingIndex = 0
        for line in ioTopLines:
            if (re.match(
                    r'\W*TID\W+PRIO\W+USER\W+DISK READ\W+DISK WRITE\W+SWAPIN\W+IO\W+COMMAND\W*',
                    line.strip(), re.M | re.I)):
                break
            else:
                dataLineStartingIndex += 1

        while (dataLineStartingIndex >= 0):
            ioTopLines.pop(0)
            dataLineStartingIndex -= 1

        # for line in ioTopLines:
        #     print(line)
        # print('--------------------')

        orderIndex = 0
        for line in ioTopLines:
            # print(line)
            if (line.strip() == ''):
                continue

            try:
                # find the 'M/s" or 'B/s', they are for disk read and write
                matches = re.findall('\s*\d+\.\d{2}\s*[G|M|K|B]\/s\s+', line)
                diskRead = matches[0].strip()
                diskWrite = matches[1].strip()

                # find the "0.00 %" occurrences, they are for swapin and io
                matches = re.findall('\s*\d+\.\d{2}\s*\%\s+', line)
                swapin = matches[0].strip()
                io = matches[1].strip()

                lineValues = line.split()
                pid = lineValues[0].strip()
                prio = lineValues[1].strip()
                user = lineValues[2].strip()

                lastPercentIndex = line.rfind('%')
                command = line[lastPercentIndex + 1:]

                ioTopItem = {}
                ioTopItem['TID'] = pid
                ioTopItem['PRIO'] = prio
                ioTopItem['USER'] = user
                ioTopItem['READ'] = diskRead
                ioTopItem['WRITE'] = diskWrite
                ioTopItem['SWAPIN'] = swapin
                ioTopItem['IO'] = io
                ioTopItem['COMMAND'] = command
            except Exception as err:
                print(err, "-------  GetCmdIotop")
                continue

            # use an incremental int as key, so we keey the order of the items.
            ioTopResults['data'][orderIndex] = ioTopItem
            orderIndex += 1

        return ioTopResults
Exemple #8
0
class CPUProfiler:
    def __init__(self, server, config='release'):
        self.server = server
        self.client = LepDClient(self.server)
        self.config = config

        # this maxDataCount should match the one defined for UI.
        self.maxDataCount = 25

        self.loadBalanceBenchMark = Decimal(40)

    def getCpuInfoForArm(self, lines):

        results = {}

        line = lines.pop(0)
        results['architecture'] = "ARM"
        results['model name'] = line.split(':')[1].strip()
        results['processors'] = {}

        line = lines.pop(0)
        while (not line.startswith("Features")):
            if (line.startswith("processor")):

                processorId = line.split(":")[1].strip()
                results['processors'][processorId] = {}

                bogoMips = lines.pop(0).split(":")[1].strip()
                results['processors'][processorId]["processorId"] = processorId
                results['processors'][processorId]["bogomips"] = bogoMips

            line = lines.pop(0)

        return results

    def getCpuInfoForArmArch64(self, lines):

        results = {}

        line = lines.pop(0)
        results['architecture'] = "ARM"

        results['model name'] = line.split(":")[1].strip()
        results['processors'] = {}

        line = lines.pop(0)
        while (not line.startswith("Features")):
            if (line.startswith("processor")):

                processorId = line.split(":")[1].strip()
                results['processors'][processorId] = {}
                results['processors'][processorId]["processorId"] = processorId
                results['processors'][processorId]["bogomips"] = ''

            line = lines.pop(0)

        return results

    def getCpuInfoForX86(self, lines):

        results = {}
        results['architecture'] = "X86"
        results['processors'] = {}

        for line in lines:
            if (line.strip() == ""):
                continue

            if re.match(r'processor\W+:\W+\d.*', line, re.M | re.I):
                linePairs = line.split(":")
                processorId = linePairs[1].strip()
                results['processors'][processorId] = {}
                continue

            if (":" in line):
                linePairs = line.split(":")
                lineKey = linePairs[0].strip()
                lineValue = ''
                if (len(linePairs) > 1):
                    lineValue = linePairs[1].strip()

                results['processors'][processorId][lineKey] = lineValue

        return results

    def get_proc_cpu_info(self, response_lines=[]):

        lepd_command = 'GetProcCpuinfo'
        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)

        response_data = {}
        if self.config == 'debug':
            response_data['rawResult'] = response_lines

        firstLine = response_lines[0]
        if "ARM" in firstLine:
            response_data['data'] = self.getCpuInfoForArm(response_lines)
        elif 'AArch64' in firstLine:
            response_data['data'] = self.getCpuInfoForArmArch64(response_lines)
        else:
            secondLine = response_lines[1]
            response_data['data'] = self.getCpuInfoForX86(response_lines)
            if 'GenuineIntel' not in secondLine:
                response_data['data']['architecture'] = 'ARM'

        response_data['data']['processorCount'] = 0
        for line in response_lines:
            if re.match(r'\W*processor\W*:\W*\d+', line, re.M | re.I):
                response_data['data']['processorCount'] += 1

        return response_data

    def get_processor_count(self, response_lines=[]):

        lepd_command = 'GetCpuInfo'
        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)

        response_data = {}
        for line in response_lines:
            if line.startswith('cpunr'):
                response_data['count'] = int(line.split(":")[1].strip())
                break

        if 'count' not in response_data:
            print('failed in getting processor count by GetCpuInfo')
            print(response_lines)

        return response_data

    def get_capacity(self):

        cpuInfoData = self.get_proc_cpu_info()

        if (not cpuInfoData):
            return {}

        responseData = {}
        if (self.config == 'debug'):
            responseData['rawResult'] = cpuInfoData['rawResult']
            responseData['lepd_command'] = 'GetProcCpuinfo'

        capacity = {}
        capacity['processors'] = cpuInfoData['data']['processors']

        coresString = 'Core'
        coreCount = len(cpuInfoData['data']['processors'])
        capacity['coresCount'] = coreCount

        if (coreCount > 1):
            coresString = "Cores"

        for processorId, processorData in cpuInfoData['data'][
                'processors'].items():

            if (cpuInfoData['data']['architecture'] == "ARM"):
                if ('model name' in cpuInfoData['data']):
                    processorData['model'] = cpuInfoData['data']['model name']
                else:
                    processorData['model'] = ''

                # Summary is a string to briefly describe the CPU, like "2GHZ x 2", meaning it's a 2-core cpu with 2GHZ speed.
                if ('bogomips' not in processorData):
                    capacity['bogomips'] = ''
                    capacity['summary'] = ''
                else:
                    capacity['bogomips'] = processorData['bogomips']
                    capacity['summary'] = processorData[
                        'bogomips'] + " MHz x " + str(coreCount) + coresString

                capacity['model'] = processorData['model']
                capacity['architecture'] = 'ARM'

            else:
                modelName = processorData['model name'].replace("(R)",
                                                                "").replace(
                                                                    " CPU", "")
                if (" @" in modelName):
                    modelName = modelName[0:modelName.find(" @")]
                processorData['model'] = modelName

                processorSpeed = Decimal(processorData['cpu MHz']).quantize(
                    Decimal('0'))

                # Summary is a string to briefly describe the CPU, like "2GHZ x 2", meaning it's a 2-core cpu with 2GHZ speed.
                capacity['summary'] = str(processorSpeed) + " MHz x " + str(
                    coreCount) + coresString
                capacity['model'] = modelName
                capacity['bogomips'] = processorData['bogomips']
                capacity['architecture'] = 'X86'

            break

        responseData['data'] = capacity
        return responseData

    def get_status(self):

        statData = self.get_irq()
        allIdleRatio = self.client.toDecimal(statData['data']['all']['idle'])

        responseData = {}
        responseData["data"] = {}

        componentInfo = {}
        componentInfo["name"] = "cpu"
        componentInfo["ratio"] = 100 - allIdleRatio
        componentInfo['server'] = self.server

        if (self.config == 'debug'):
            componentInfo['rawResult'] = statData['rawResult']

        responseData["data"] = componentInfo

        return responseData

    def get_irq(self, response_lines=[]):

        lepd_command = 'GetCmdMpstat'
        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)

        if len(response_lines) < 3:
            return {}

        try:
            # discard the first three lines
            response_lines.pop(0)
            response_lines.pop(0)
            response_lines.pop(0)
        except Exception as e:
            print(response_lines, "-------  GetCmdMpstat")
            return {}

        irq_data = {}
        irq_data['data'] = {}

        for line in response_lines:

            if (line.strip() == ''):
                break

            line_values = line.split()

            irq_stat = {}
            try:
                irq_stat['idle'] = float(line_values[-1])
                irq_stat['gnice'] = float(line_values[-2])
                irq_stat['guest'] = float(line_values[-3])
                irq_stat['steal'] = float(line_values[-4])
                irq_stat['soft'] = float(line_values[-5])
                irq_stat['irq'] = float(line_values[-6])
                irq_stat['iowait'] = float(line_values[-7])
                irq_stat['system'] = float(line_values[-8])
                irq_stat['nice'] = float(line_values[-9])
                irq_stat['user'] = float(line_values[-10])

                cpu_name = line_values[-11]
            except Exception as err:
                print(err, "-------  GetCmdMpstat")
                continue

            irq_data['data'][cpu_name] = irq_stat

        return irq_data

    def get_softirq(self, response_lines=[]):

        lepd_command = 'GetCmdMpstat-I'
        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)

        if len(response_lines) < 2:
            return {}
        try:
            # discard the first two lines
            response_lines.pop(0)
            response_lines.pop(0)
        except Exception as e:
            print(response_lines, "-------  GetCmdMpstat-I")
            return {}

        softirq_resp = []
        softirq_data = {}
        softirq_data['data'] = {}

        # print(response_lines)
        startIndex = 0
        for line in response_lines:
            if (line.strip() == ''):
                startIndex = startIndex + 1

            if startIndex < 2:
                continue
            elif startIndex > 2:
                break

            softirq_resp.append(line)

        if len(softirq_resp) <= 1:
            return softirq_data

        softirq_resp.pop(0)
        softirq_resp.pop(0)
        for line in softirq_resp:
            line_values = line.split()

            softirq_stat = {}
            try:
                softirq_stat['HRTIMER'] = self.client.toDecimal(
                    line_values[-2])
                softirq_stat['TASKLET'] = self.client.toDecimal(
                    line_values[-4])
                softirq_stat['NET_RX'] = self.client.toDecimal(line_values[-7])
                softirq_stat['NET_TX'] = self.client.toDecimal(line_values[-8])

                cpu_name = line_values[1]
            except Exception as err:
                print(err, "-------  GetCmdMpstat-I")
                continue

            softirq_data['data'][cpu_name] = softirq_stat

        return softirq_data

    # def get_stat(self, response_lines=[]):

    #     if not response_lines:
    #         response_lines = self.client.getResponse('GetCmdMpstat')
    #     elif isinstance(response_lines, str):
    #         response_lines = self.client.split_to_lines(response_lines)

    #     # discard the first two lines
    #     response_lines.pop(0)
    #     response_lines.pop(0)

    #     if not response_lines:
    #         return None
    #         response_lines.pop(0)

    #     # Basic data, basically for debugging
    #     stat_data = {
    #         "lepd_command": "GetCmdMpstat",
    #         "rawResult": response_lines,
    #         "server": self.server
    #     }

    #     # this is for analysis
    #     irq_numbers = []
    #     softirq_numbers = []

    #     # Core data, for displaying
    #     stat_data['data'] = {}
    #     stat_data['data']['cpu_stat'] = {}
    #     for line in response_lines:

    #         if (line.strip() == ''):
    #             break

    #         line_values = line.split()

    #         cpu_stat = {}
    #         try:
    #             cpu_stat['idle'] = float(line_values[-1])
    #             cpu_stat['gnice'] = float(line_values[-2])
    #             cpu_stat['guest'] = float(line_values[-3])
    #             cpu_stat['steal'] = float(line_values[-4])
    #             cpu_stat['soft'] = float(line_values[-5])
    #             cpu_stat['irq'] = float(line_values[-6])
    #             cpu_stat['iowait'] = float(line_values[-7])
    #             cpu_stat['system'] = float(line_values[-8])
    #             cpu_stat['nice'] = float(line_values[-9])
    #             cpu_stat['user'] = float(line_values[-10])

    #             cpu_name = line_values[-11]
    #         except Exception as err:
    #             print(err)
    #             continue

    #         # this is for mocking data
    #         # current_minute = datetime.now().minute
    #         # if current_minute % 2 == 0:
    #         #     if cpu_name == '0':
    #         #         cpu_stat['irq'] = Decimal(80)
    #         #     else:
    #         #         cpu_stat['irq'] = Decimal(20)

    #         stat_data['data']['cpu_stat'][cpu_name] = cpu_stat

    #     # analysis for load balance
    #     analysis_report = self.analyze_irq_for_load_balance(stat_data['data']['cpu_stat'])
    #     if analysis_report:
    #         if 'messages' not in stat_data:
    #             stat_data['messages'] = []

    #         analysis_report['source'] = 'irq'
    #         stat_data['messages'].append(analysis_report)

    #     #get irq info from stat_data
    #     irq_info = self.get_irq(response_lines)
    #     if (irq_info != None):
    #         stat_data['data']['irq'] = irq_info['data']

    #     #get soft irq info from stat_data
    #     softirq_info = self.get_soft_irq(response_lines)
    #     if (softirq_info != None):
    #         stat_data['data']['softirq'] = softirq_info['data']

    #     return stat_data

    def analyze_irq_for_load_balance(self, cpu_stat_data):

        if not cpu_stat_data:
            return None

        if len(cpu_stat_data) < 2:
            return None

        irq_list = []
        for core_name in cpu_stat_data:
            if core_name == 'all':
                continue
            irq_list.append(cpu_stat_data[core_name])

        # TODO: will refactor in the future, the logic below is just for demo
        # a very simple logic: if any two irq values has a difference of over 30% variance, we say it's not load balanced.
        for index, item in enumerate(irq_list):
            if index == len(irq_list) - 1:
                break

            irqValue = item['irq'] + item['soft']
            nextIrqValue = irq_list[index + 1]['irq'] + irq_list[index +
                                                                 1]['soft']

            variance = abs(irqValue - nextIrqValue)
            # print("variance: " + str(variance))
            if variance >= self.loadBalanceBenchMark:
                # if randrange(10) > 4:   # this is just for mocking
                print("IRQ variance=" + str(variance) +
                      ">=0.4, load NOT balanced")
                return {
                    'level': "warning",
                    "message": "Load NOT balanced! ",
                    "time": strftime("%Y-%m-%d %H:%M:%S", gmtime())
                }
            # else:
            # print("IRQ variance less than 0.3, load balanced")

        return None

    def get_average_load(self, response_lines=None):

        lepd_command = 'GetProcLoadavg'
        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)
        if not response_lines:
            return
        response_data = {}
        # if options['debug']:
        #     response_data['rawResult'] = response_lines[:]
        #     response_data['lepd_command'] = 'GetProcLoadavg'

        response = response_lines[0].split(" ")

        # '0.00 0.01 0.05 1/103 24750
        # 'avg system load of 1 minute ago, 5 minutes ago, 15 minutes ago,
        # the fourth is A/B, A is the number of running processes
        # B is the total process count.
        # last number, like 24750 is the ID of the most recently running process.
        result_data = {
            'last1': self.client.toDecimal(response[0]),
            'last5': self.client.toDecimal(response[1]),
            'last15': self.client.toDecimal(response[2])
        }

        response_data['data'] = result_data

        return response_data

    def getTopOutput(self, responseLines=None):

        lepd_command = 'GetCmdTop'

        if not responseLines:
            responseLines = self.client.getResponse(lepd_command)
        elif isinstance(responseLines, str):
            responseLines = self.client.split_to_lines(responseLines)

        if len(responseLines) == 0:
            return {}

        responseData = {}
        if (self.config == 'debug'):
            responseData['rawResult'] = responseLines[:]

        headerLine = responseLines.pop(0)
        while (not re.match(r'\W*PID\W+USER\W+.*', headerLine, re.M | re.I)):
            headerLine = responseLines.pop(0)

        headerColumns = headerLine.split()

        result = {}

        for lineIndex, responseLine in enumerate(responseLines):
            if (self.client.LEPDENDINGSTRING in responseLine):
                break

            if (lineIndex > self.maxDataCount):
                break

            lineValues = responseLine.split()

            result[lineIndex] = {}

            # print(headerLine)
            for columnIndex, columnName in enumerate(headerColumns):
                if (columnName == 'Name' or columnName == 'CMD'):
                    result[lineIndex][columnName] = ' '.join(
                        [str(x) for x in lineValues[columnIndex:]])
                else:
                    result[lineIndex][columnName] = lineValues[columnIndex]

        responseData['data'] = {}
        responseData['data']['top'] = result
        responseData['data']['headerline'] = headerLine

        if (re.match(r'\W*PID\W+USER\W+PR\W+.*', headerLine, re.M | re.I)):
            # android :
            #   PID USER     PR  NI CPU% S  #THR     VSS     RSS PCY Name
            responseData['data']['os'] = 'android'
        elif (re.match(r'\W*PID\W+USER\W+PRI\W+NI\W+VSZ\W+RSS\W+.*',
                       headerLine, re.M | re.I)):
            # for Linux:
            # PID USER     PRI  NI    VSZ   RSS S %CPU %MEM     TIME CMD
            responseData['data']['os'] = 'linux'
        else:
            print("GetCmdTop command returned data from unrecognized system")

        return responseData
Exemple #9
0
class MemoryProfiler:
    def __init__(self, server, config='release'):
        self.server = server
        self.client = LepDClient(self.server)
        self.config = config

        self.dataCount = 25

    def convertKbToMb(self, strKbValue):
        return Decimal(int(strKbValue) / 1024).quantize(Decimal('0'))

    def getStatus(self, response_lines=None):

        lepd_command = "GetProcMeminfo"

        print("     calling LEPD by: " + lepd_command)
        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)
        print('     ' + lepd_command + " returned")

        response_data = {}
        if self.config == 'debug':
            response_data['rawResult'] = response_lines[:]
            response_data['lepd_command'] = lepd_command

        if len(response_lines) == 0:
            return response_data

        results = {}
        for line in response_lines:
            linePairs = line.split(":")
            lineKey = linePairs[0].strip()
            lineValue = linePairs[1].replace('kB', '').strip()

            results[lineKey] = lineValue

        componentInfo = {}
        componentInfo["name"] = "memory"

        componentInfo['total'] = self.client.toDecimal(
            Decimal(int(results['MemTotal']) / 1024).quantize(Decimal('0')))
        componentInfo['free'] = self.client.toDecimal(
            Decimal(int(results['MemFree']) / 1024).quantize(Decimal('0')))
        componentInfo['buffers'] = self.client.toDecimal(
            Decimal(int(results['Buffers']) / 1024).quantize(Decimal('0')))
        componentInfo['cached'] = self.client.toDecimal(
            Decimal(int(results['Cached']) / 1024).quantize(Decimal('0')))
        componentInfo['used'] = componentInfo['total'] - componentInfo[
            'free'] - componentInfo['buffers'] - componentInfo['cached']

        usedRatio = (componentInfo['used'] / componentInfo['total']) * 100
        #usedRatio = Decimal(usedRatio).quantize(Decimal('0.00'))
        usedRatio = ("%.2f" % usedRatio)
        componentInfo["ratio"] = usedRatio

        componentInfo['unit'] = 'MB'

        response_data['data'] = componentInfo
        return response_data

    def getCapacity(self, sampleDataLines=None):
        responseLines = []
        if (sampleDataLines == None):
            responseLines = self.client.getResponse("GetProcMeminfo")
        else:
            responseLines = sampleDataLines

        if (len(responseLines) == 0):
            return {}

        responseData = {}
        if (self.config == 'debug'):
            responseData['rawResult'] = responseLines[:]

        results = {}
        for line in responseLines:
            # print(line)
            if (self.client.LEPDENDINGSTRING in line):
                continue

            linePairs = line.split(":")
            lineKey = linePairs[0].strip()
            lineValue = linePairs[1].replace('kB', '').strip()

            results[lineKey] = lineValue

        componentInfo = {}
        componentInfo["name"] = "memory"
        componentInfo["capacity"] = int(int(results['MemTotal']) / 1024)
        componentInfo["unit"] = "MB"

        componentInfo["summary"] = str(
            componentInfo["capacity"]) + " " + componentInfo["unit"]

        responseData['data'] = componentInfo
        return responseData

    def normalizeValue(self, valueString):
        # 1.23% -> 0.012
        if (valueString.endswith("%")):
            valueString = valueString.replace("%", "")
            valueString = Decimal(Decimal(valueString) / 100).quantize(
                Decimal('0.0000'))
        elif (valueString == "N/A"):
            valueString = 0

        return valueString

    # def getMemoryStat(self):
    #
    #     memoryStatData = {}
    #
    #     results = self.client.getResponse('GetCmdSmem')
    #     if (self.config == 'debug'):
    #         memoryStatData['rawResult'] = results[:]
    #
    #     headerLine = results.pop(0)
    #     headers = headerLine.split()
    #
    #     # sMemInfo['headerLine'] = headerLine
    #     for line in results:
    #         # print(line)
    #         lineValues = line.split()
    #
    #         pid = lineValues[0]
    #         memoryStatData[pid] = {}
    #         # sMemInfo['line'] = line
    #         memoryStatData[pid]['pid'] = lineValues.pop(0)
    #         memoryStatData[pid]['user'] = lineValues.pop(0)
    #
    #         # the command section is likely to have whitespaces in it thus hard to locate it. workaround here.
    #         memoryStatData[pid]['rss'] = self.normalizeValue(lineValues.pop())
    #         memoryStatData[pid]['pss'] = self.normalizeValue(lineValues.pop())
    #         memoryStatData[pid]['uss'] = self.normalizeValue(lineValues.pop())
    #         memoryStatData[pid]['swap'] = self.normalizeValue(lineValues.pop())
    #
    #         memoryStatData[pid]['command'] = ' '.join([str(x) for x in lineValues])
    #
    #         if(len(memoryStatData) >= self.dataCount):
    #             break
    #
    #     return

    def getProcrank(self):

        procrankData = {}

        resultLines = self.client.getResponse('GetCmdProcrank')
        if (len(resultLines) == 0):
            return {}

        if (self.config == 'debug'):
            procrankData['rawResult'] = resultLines[:]

        procrankData['data'] = {}
        procrankData['data']['procranks'] = {}
        headerLine = resultLines.pop(0)
        lineIndex = 0

        for line in resultLines:
            if (re.match(r'\W+-+\W+-+\W-+.*', line, re.M | re.I)):
                break
            lineValues = line.split()

            procrankData['data']['procranks'][lineIndex] = {}
            procrankData['data']['procranks'][lineIndex][
                'pid'] = lineValues.pop(0)
            procrankData['data']['procranks'][lineIndex][
                'vss'] = self.client.toDecimal(
                    Decimal(Decimal(lineValues.pop(0)[:-1])))
            procrankData['data']['procranks'][lineIndex][
                'rss'] = self.client.toDecimal(
                    Decimal(Decimal(lineValues.pop(0)[:-1])))
            procrankData['data']['procranks'][lineIndex][
                'pss'] = self.client.toDecimal(
                    Decimal(Decimal(lineValues.pop(0)[:-1])))
            procrankData['data']['procranks'][lineIndex][
                'uss'] = self.client.toDecimal(
                    Decimal(Decimal(lineValues.pop(0)[:-1])))

            procrankData['data']['procranks'][lineIndex]['cmdline'] = ' '.join(
                [str(x) for x in lineValues])

            lineIndex += 1

            if (len(procrankData) >= self.dataCount):
                break

        # now parse from end, which contains summary info
        lastLine = resultLines[-1]
        procrankData['data']['sum'] = {}
        if (lastLine.startswith('RAM:')):
            lastLine = lastLine.replace("RAM:", '')
            lastLineValuePairs = lastLine.split(", ")
            for valuePair in lastLineValuePairs:
                keyValuePair = valuePair.split()

                keyName = keyValuePair[1].strip()
                keyValue = keyValuePair[0].strip()

                procrankData['data']['sum'][keyName + "Unit"] = keyValue[-1:]
                procrankData['data']['sum'][keyName] = self.client.toDecimal(
                    Decimal(Decimal(keyValue[:-1])))

        xssSumLine = resultLines[-3].strip()
        if (xssSumLine.endswith('TOTAL')):
            xssValues = xssSumLine.split()

            ussTotalString = xssValues[-2]
            procrankData['data']['sum']['ussTotalUnit'] = ussTotalString[-1:]
            procrankData['data']['sum']['ussTotal'] = self.client.toDecimal(
                Decimal(Decimal(ussTotalString[:-1])))

            pssTotalString = xssValues[-3]
            procrankData['data']['sum']['pssTotalUnit'] = pssTotalString[-1:]
            procrankData['data']['sum']['pssTotal'] = self.client.toDecimal(
                Decimal(Decimal(pssTotalString[:-1])))

        return procrankData
Exemple #10
0
class PerfProfiler:
    def __init__(self, server, config='release'):
        self.server = server
        self.client = LepDClient(self.server)
        self.config = config
        self.flame_burner = FlameBurner()

        self.dataCount = 25

    def get_perf_cpu_clock(self, response_lines=None):

        lepd_command = 'GetCmdPerfCpuclock'

        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)

        if len(response_lines) == 0:
            return {}

        response_data = {}
        if self.config == 'debug':
            response_data['rawResult'] = response_lines[:]
            response_data['lepd_command'] = lepd_command

        column_header_line_prefix = '# Overhead'

        try:
            while not response_lines[0].startswith(column_header_line_prefix):
                response_lines.pop(0)
            response_lines.pop(0)
            response_lines.pop(0)
            response_lines.pop(0)
        except Exception as e:
            print(response_lines, " ----------- GetCmdPerfCpuclock")
            return {}

        result_list = []
        for line in response_lines:
            if line.strip() == '':
                continue

            line_values = line.split()

            if len(line_values) < 5:
                # print('                     --------------- skip it.')
                continue

            if '%' not in line_values[0]:
                # print('                     --------------- skip it.')
                continue

            result_line = {}
            result_line['Overhead'] = line_values[0]
            result_line["Command"] = line_values[1]
            result_line["Shared Object"] = line_values[2]
            result_line['Symbol'] = ' '.join([str(x) for x in line_values[3:]])

            result_list.append(result_line)
            if len(result_list) >= self.dataCount:
                # print('now the length of the array is greater than the max, break here')
                break

        response_data['data'] = result_list

        return response_data

    def get_cmd_perf_flame(self, response_lines=None):

        lepd_command = 'GetCmdPerfFlame'

        if not response_lines:
            response_lines = self.client.getResponse(lepd_command)
        elif isinstance(response_lines, str):
            response_lines = self.client.split_to_lines(response_lines)

        if len(response_lines) == 0:
            return {}

        flame_data = self.flame_burner.burn(response_lines)
        flame_data_hierarchy = []
        # self.flame_burner.generate_json_hierarchy(flame_data, [], flame_data_hierarchy)

        return {
            'flame': flame_data,
            'perf_script_output': response_lines,
            'hierarchy': flame_data_hierarchy
        }