Python's approach to obtaining system memory usage under Linux systems

Source: Internet
Author: User
The example in this paper describes how Python obtains system memory usage under Linux systems. Share to everyone for your reference. Specific as follows:

"" "Simple module for getting amount of memory used by a specified user's processes on a UNIX system. It uses UNIX PS utility to get the memory usage for a specified username and pipe it to awk for summing upper application Memory usage and return the total. Python ' s Popen () from subprocess module was used for spawning PS and awk. "" Import Subprocessclass Memorymonitor (object):  def __init__ (self, username): "" "    Create new Memorymonitor instance.    "" " Self.username = Username  def usage (self): "" "    Return int containing memory used by user ' s processes.    " " Self.process = subprocess. Popen ("Ps-u%s-o RSS | awk ' {sum+=$1} END {print sum} ' "% Self.username,                    shell=true,                    stdout=subprocess. PIPE,                    )    self.stdout_list = Self.process.communicate () [0].split (' \ n ')    return int (self.stdout_list[0])

Save the above code as: memorymonitor.py

The calling method is as follows:

From memorymonitor Import Memorymonitormemory_mon = Memorymonitor (' username ') used_memory = Memory_mon.usage ()

Hopefully this article will help you with Python programming.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.