Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/henry-spanka/iomonitor
Monitor IO of Proxmox Virtual Machines
https://github.com/henry-spanka/iomonitor
io proxmox statistics
Last synced: 2 months ago
JSON representation
Monitor IO of Proxmox Virtual Machines
- Host: GitHub
- URL: https://github.com/henry-spanka/iomonitor
- Owner: henry-spanka
- License: gpl-2.0
- Created: 2017-09-07T22:07:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T20:35:45.000Z (over 2 years ago)
- Last Synced: 2024-10-05T05:05:04.485Z (3 months ago)
- Topics: io, proxmox, statistics
- Language: Python
- Size: 20.5 KB
- Stars: 16
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
#### Table of Contents
1. [Description](#description)
2. [Setup](#setup)
3. [Usage - Configuration options and additional functionality](#usage)
4. [Limitations](#limitations)
5. [Development](#development)## Description
This program allows system administrators to identify Virtual Machines that do much IO on the underlying storage.
Why? The storage in our Proxmox Cluster was slowing down / IOPS were maxed out and Proxmox does not allow to see IOPS per VM. With this program we were able to easily identify the abusing VMs and address the storage problems.
## Setup
1. Clone the Repository
2. ```apt install python3-pip python3-terminaltables python3-colorclass python3-hurry.filesize```
3. Alternatively you can run ```pip3 install terminaltables hurry.filesize colorclass```
4. ```pip3 install qmp```
5. ```install -m 755 ./iomonitor /usr/local/bin/```## Usage
The program is fairly simple. By default a refresh interval of 5 seconds will be used.
In case you want to adjust the interval:
```bash
iomonitor --interval=$SECONDS
```## Limitations
This version of IOmonitor was tested on Proxmox VE 7 however it may work with lower versions.
Currently known limitations.
1. It's not possible to invoke any tasks that require the QMP Monitor like:
- Shutting down a VM
- Accessing the VNC Console
- Backup
2. While IOmonitor is running, IO graphs will not be rendered in Proxmox (Read/Write)# Development
Pull Requests for bug fixes or new features are welcome :)