glances_memswap.py 3.9 KB
Newer Older
A
Alessio Sergi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Glances - An eye on your system
#
# Copyright (C) 2014 Nicolargo <nicolas@nicolargo.com>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Glances is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
N
Nicolas Hennion 已提交
20 21 22
"""
Glances swap memory plugin
"""
A
Alessio Sergi 已提交
23 24 25

# Import system libs
# Check for PSUtil already done in the glances_core script
26
from psutil import swap_memory
A
Alessio Sergi 已提交
27 28

# from ..plugins.glances_plugin import GlancesPlugin
29
from glances.plugins.glances_plugin import GlancesPlugin
A
Alessio Sergi 已提交
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


class Plugin(GlancesPlugin):
    """
    Glances's swap memory Plugin

    stats is a dict
    """

    def __init__(self):
        GlancesPlugin.__init__(self)

        # We want to display the stat in the curse interface
        self.display_curse = True
        # Set the message position
        # It is NOT the curse position but the Glances column/line
        # Enter -1 to right align
        self.column_curse = 3
        # Enter -1 to diplay bottom
        self.line_curse = 1

    def update(self):
        """
        Update MEM (SWAP) stats
        """

56 57
        # Grab SWAP using the PSUtil swap_memory method
        sm_stats = swap_memory()
A
Alessio Sergi 已提交
58

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        # Get all the swap stats (copy/paste of the PsUtil documentation)
        # total: total swap memory in bytes
        # used: used swap memory in bytes
        # free: free swap memory in bytes
        # percent: the percentage usage
        # sin: the number of bytes the system has swapped in from disk (cumulative)
        # sout: the number of bytes the system has swapped out from disk (cumulative)
        swap_stats = {}
        for swap in ['total', 'used', 'free', 'percent',
                     'sin', 'sout']:
            if (hasattr(sm_stats, swap)):
                swap_stats[swap] = getattr(sm_stats, swap)

        # Set the global variable to the new stats
        self.stats = swap_stats

        return self.stats
A
Alessio Sergi 已提交
76 77 78 79 80 81 82 83

    def msg_curse(self, args=None):
        """
        Return the dict to display in the curse interface
        """
        # Init the return message
        ret = []

84 85 86 87
        # Only process if stats exist...
        if (self.stats == {}):
            return ret

A
Alessio Sergi 已提交
88 89
        # Build the string message
        # Header
90
        msg = "{0:7} ".format(_("SWAP"))
A
Alessio Sergi 已提交
91 92
        ret.append(self.curse_add_line(msg, "TITLE"))
        # Percent memory usage
93
        msg = "{0:>5}%".format(format(self.stats['percent'] / 100, '.1'))
A
Alessio Sergi 已提交
94 95 96 97 98 99
        ret.append(self.curse_add_line(msg))
        # New line
        ret.append(self.curse_new_line())
        # Total memory usage
        msg = "{0:8}".format(_("total:"))
        ret.append(self.curse_add_line(msg))
100
        msg = "{0:>6}".format(self.auto_unit(self.stats['total']))
A
Alessio Sergi 已提交
101 102 103 104 105 106
        ret.append(self.curse_add_line(msg))
        # New line
        ret.append(self.curse_new_line())
        # Used memory usage
        msg = "{0:8}".format(_("used:"))
        ret.append(self.curse_add_line(msg))
107
        msg = "{0:>6}".format(self.auto_unit(self.stats['used']))
A
Alessio Sergi 已提交
108
        ret.append(self.curse_add_line(
109
            msg, self.get_alert_log(self.stats['used'], 
110
            max=self.stats['total'])))
A
Alessio Sergi 已提交
111 112 113 114 115
        # New line
        ret.append(self.curse_new_line())
        # Free memory usage
        msg = "{0:8}".format(_("free:"))
        ret.append(self.curse_add_line(msg))
116
        msg = "{0:>6}".format(self.auto_unit(self.stats['free']))
A
Alessio Sergi 已提交
117 118 119
        ret.append(self.curse_add_line(msg))

        return ret