sysmon/README.md

50 lines
1.7 KiB
Markdown
Raw Normal View History

2021-05-21 09:08:43 +00:00
# System Monitor
2021-04-25 13:25:20 +00:00
2022-09-19 12:41:11 +00:00
Open source system monitoring solution with support for plugins.
2022-02-16 11:34:51 +00:00
![Sysmon Icon](doc/sysmon.png)
This software is free to use and is licensed under the [Apache 2.0 License](LICENSE).
2021-04-25 13:25:20 +00:00
2022-10-28 15:10:22 +00:00
- Example dashboards are provided in the [doc/dashboards/](doc/dashboards/) folder, which can be imported into your Grafana installation.
2021-09-07 09:14:08 +00:00
- Screenshots are available in the [downloads](https://bitbucket.org/mnellemann/sysmon/downloads/) section.
2022-06-27 06:04:25 +00:00
## Components
2022-09-19 12:41:11 +00:00
This software consist of a server and client component.
2022-09-19 12:41:11 +00:00
### Server
2022-09-19 12:41:11 +00:00
The server component receives aggregated metrics from *clients* and saves these into InfluxDB.
2022-09-19 12:41:11 +00:00
- More information and documentation on the [sysmon-server](server/README.md).
2022-09-19 12:41:11 +00:00
### Client & Plugins
2022-09-19 12:41:11 +00:00
The client runs on all or some of your hosts and collects metrics, which are then sent to the central sysmon-server component. Plugins are loaded by the client at startup and should also be installed.
2022-09-19 12:41:11 +00:00
- More information and documentation on the [sysmon-client](client/README.md).
. More information and documentation on the [sysmon-plugins](plugins/README.md).
## 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:
```text
USE sysmon;
DELETE WHERE hostname = 'unknown';
2022-06-27 06:04:25 +00:00
```