aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios/compute/memload.py
blob: 2ef5a63029137f7e4ad8489abce0f13db34b9fa2 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

"""Memory load and statistics."""

from __future__ import absolute_import
import logging
import yardstick.ssh as ssh

from yardstick.benchmark.scenarios import base
from six.moves import zip

LOG = logging.getLogger(__name__)


class MEMLoad(base.Scenario):
    """Collect memory statistics and system load.

    This scenario reads memory usage statistics on a Linux host.

    memory usage statistics are read using the utility 'free'.

    Parameters
        interval - Time interval to measure memory usage.
        Continuously display the result delay interval seconds apart.
        type:       [int]
        unit:       seconds
        default:    1

        count - specifies a # of measurments for each test
        type:       [int]
        unit:       N/A
        default:    1
    """
    __scenario_type__ = "MEMORYload"

    def __init__(self, scenario_cfg, context_cfg):
        """Scenario construction."""
        self.scenario_cfg = scenario_cfg
        self.context_cfg = context_cfg
        self.setup_done = False

    def setup(self):
        """Scenario setup."""
        host = self.context_cfg['host']
        user = host.get('user', 'ubuntu')
        ssh_port = host.get("ssh_port", ssh.DEFAULT_PORT)
        ip = host.get('ip', None)
        key_filename = host.get('key_filename', '~/.ssh/id_rsa')

        LOG.info("user:%s, host:%s", user, ip)
        self.client = ssh.SSH(user, ip, key_filename=key_filename,
                              port=ssh_port)
        self.client.wait(timeout=600)

        self.setup_done = True

    def _execute_command(self, cmd):
        """Execute a command on server."""
        LOG.info("Executing: %s", cmd)
        status, stdout, stderr = self.client.execute(cmd)
        if status:
            raise RuntimeError("Failed executing command: ",
                               cmd, stderr)
        return stdout

    def _filtrate_result(self, result):
        fields = []
        free = {}
        ite = 0
        average = {'total': 0, 'used': 0, 'free': 0, 'buff/cache': 0,
                   'shared': 0}
        maximum = {'total': 0, 'used': 0, 'free': 0, 'buff/cache': 0,
                   'shared': 0}

        for row in result.split('\n'):
            line = row.split()

            if line and line[0] == 'total':
                # header fields
                fields = line[:]
            elif line and line[0] == 'Mem:':
                memory = 'memory' + str(ite)
                ite += 1
                values = line[1:]
                if values and len(values) == len(fields):
                    free[memory] = dict(list(zip(fields, values)))

        for entry in free:
            for item in average:
                average[item] += int(free[entry][item])

            for item in maximum:
                if int(free[entry][item]) > maximum[item]:
                    maximum[item] = int(free[entry][item])

        for item in average:
            average[item] = average[item] / len(free)

        return {'free': free, 'average': average, 'max': maximum}

    def _get_mem_usage(self):
        """Get memory usage using free."""
        options = self.scenario_cfg['options']
        interval = options.get("interval", 1)
        count = options.get("count", 1)

        cmd = "free -c '%s' -s '%s'" % (count, interval)

        result = self._execute_command(cmd)
        filtrated_result = self._filtrate_result(result)

        return filtrated_result

    def run(self, result):
        """Read processor statistics."""
        if not self.setup_done:
            self.setup()

        result.update(self._get_mem_usage())