Skip to content

A CPU/RAM monitoring tool that only relies on cgroups

License

Notifications You must be signed in to change notification settings

veedata/cgroup-monitor

Repository files navigation

cgroup-monitor

PyPi Documentation Status License Downloads

Description

cgroup-monitor is a Python package that provides a simple interface to monitor cgroup metrics. It is designed to be used in a containerized environment to monitor the resource usage of the containers. It can be used to monitor the CPU, and memory, of the containers.

The current version is only compatible with cgroup v1 (Ubuntu 20.04 and lower)

Installation

pip install cgroup-monitor

Usage

from cgroup_monitor import CgroupMonitor

monitor = CgroupMonitor()
monitor.start_monitor()
# run task here
cpu, mem = monitor.stop_monitor()

print(f"CPU Usage: {cpu}%, Memory Usage: {mem}%")

Features

  • Monitor CPU and Memory usage of the containers
  • Simple interface to start and stop monitoring
  • Lightweight and easy to use

Documentation

The official documentation is hosted on Read the Docs: https://cgroup-monitor.readthedocs.io/en/latest/

License

This project is licensed under the terms of the MIT license, see LICENSE.

Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps.

About

A CPU/RAM monitoring tool that only relies on cgroups

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages