Skip to content

Remote monitoring tool for Windows and Linux written in Go

Notifications You must be signed in to change notification settings

Netzwerkfehler/remmon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

remmon

A simple remote monitoring tool for Windows and Linux

Tested on

  • Windows 10
  • Ubuntu 20.04.1 LTS
  • Debian 10

Features

  • Zero configuration
  • No database
  • Very resource efficient (almost no impact on the CPU, less than 10 MB RAM usage)
  • Web based

How to use

  1. Download the latest version from releases
  2. Unzip
  3. Execute remmon.exe (The firewall message must be confirmed in order to have access from the network)
  4. Open http://localhost:1510/charts.html in your browser

Configuration

Mostly not needed, but the following command line flags are available

  • port -> The port the web server will be running on; Default: 1510
  • delay -> Seconds between reading datasets; Default: 10s
  • entries -> Maximum amount of entries that will be stored; Default: 1000
  • hideHostname -> If provided the charts page won't display the hostname; Default: false

Example running on port 8080 reading new values every 15s and storing 500 entries: remmon.exe -port 8080 -delay 15 -entries 500

Monitorable values

  • CPU utilization
  • RAM usage
  • Memory usage of partitions
  • Sent and received network bytes
  • Amount of running processes

Dependencies