Go to file
2022-02-16 12:34:51 +01:00
client Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
doc Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
gradle/wrapper Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
plugins Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
server Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
shared Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
.gitattributes Initial commit, work in progress 2021-04-25 15:25:20 +02:00
.gitignore Refactoring of component names. 2021-05-07 12:39:55 +02:00
bitbucket-pipelines.yml Cleanup and initial test of build pipeline. 2021-05-21 17:00:47 +02:00
build.gradle Add system load average metrics. 2021-10-08 09:47:35 +02:00
gradle.properties Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
gradlew Misc. small changes. 2021-12-05 21:17:16 +01:00
gradlew.bat Initial commit, work in progress 2021-04-25 15:25:20 +02:00
LICENSE Improve robustness, logging and example dashboards 2021-09-22 15:46:48 +02:00
README.md Cleanup and updates to README files. 2022-02-16 12:34:51 +01:00
settings.gradle Refactoring of component names. 2021-05-07 12:39:55 +02:00

System Monitor

System monitoring solution with support for plugins.

Sysmon Icon

This software is free to use and is licensed under the Apache 2.0 License.

  • Example dashboards are provided in the doc/ folder, which can be imported into your Grafana installation.
  • Screenshots are available in the downloads section.

Components

Client / Agent

Runs on your hosts and collects metrics, which are sent to the central server.

More information.

Plugins

Loaded by the client and provides extensions for doing the actual collecting of metrics.

More information.

Server

Receives aggregated metrics from clients and saves these into InfluxDB.

More information.

Known problems

Correct timezone and clock

  • Ensure you have correct timezone and date/time and NTPd (or similar) running to keep it accurate!

Naming collision

You can't have hosts with the same name, as these cannot be distinguished when metrics are written to InfluxDB (which uses the hostname as key).

Renaming hosts

If you rename a host, the metrics in InfluxDB will still be available by the old hostname, and new metrics will be written with the new hostname. There is no easy way to migrate the old data, but you can delete it easily:

USE sysmon;
DELETE WHERE hostname = 'unknown';