diff --git a/.gitignore b/.gitignore index dcf7985..f494847 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .classpath .project .gradle +.vscode output build bin diff --git a/README.md b/README.md index 9eb7d9b..5460d91 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This software is free to use and is licensed under the [Apache 2.0 License](LICE - Screenshots are available in the [downloads](https://bitbucket.org/mnellemann/sysmon/downloads/) section. -## Components +## Components ### Client / Agent @@ -20,7 +20,7 @@ Runs on your hosts and collects metrics, which are sent to the central *server*. ### Plugins -Loaded by the *client* and provides extensions for doing the actual collecting of metrics. +Used by the *client* and provides extensions for doing the actual collecting of metrics. [More information](plugins/README.md). @@ -50,4 +50,4 @@ If you rename a host, the metrics in InfluxDB will still be available by the old ```text USE sysmon; DELETE WHERE hostname = 'unknown'; -``` \ No newline at end of file +``` diff --git a/doc/sysmon.drawio b/doc/sysmon.drawio index 30c9d63..e78d121 100644 --- a/doc/sysmon.drawio +++ b/doc/sysmon.drawio @@ -1 +1 @@ -3VjLctowFP0aLzuDJfxaBpK0maHNgkXbVUdY149GtlxZDtCvr4RlwNgQUmDIAAwjnSvJ8jlHurYsPM4WnwUpkq+cArPQgC4sfG8hZA8RsvRvQJc14nu4BmKRUtNoA0zTv2DAgUGrlELZaig5ZzIt2mDI8xxC2cKIEHzebhZx1r5qQWLoANOQsC76PaUyMajtBpvAF0jjxFzaR14dyEjT2NxJmRDK51sQfrDwWHAu61K2GAPT5DW81P0e90TXExOQy2M65Ohnsfz2OIVfo/lfET/Cn4n3yYzySlhlbniS5tXCzFguGxoEr3IKeiTbwqN5kkqYFiTU0bkSXmGJzJgJly8gw8RUopSxMWdcrAbCkaO/Gue53MLrj+4sBX+BrYi7+qiImSoICYu9HNhrZpUlgWcgxVI1MR2QY8Qwbmyq8y1pG72SLVVdgxHjpng98oZwVTCcv4N/1OH/7unHrbJv+2327eG16Xc7VANVy99UuZAJj3lO2MMGHbXF2LSZcF4Y8DdIuTR7GakkPyBQPQF91cOkqknySoRw4GbMxiqJiEEeaDfsF0kAIzJ9bc/j7IzjjuGnyzLjucKmIJS9Lmd+sKkDXp/JA9fD5Ewmd+wdk6Nrm9y7JZMPjzS5c02TDzsmf8ojVi3uRx0p1FNBoYvhkqWKcYHf9vis1mYyWwMkfIlXij1XUg0DjQa1OLbzVlaIwA3DvoVBvWA2GJxnYbjBzsKwuwvD7VkX/qXWhdNRST3DRiQnFnKZ1LyqzciNdemelMmME0FLSy9dl2Rak/pfIXdMEZPm8V51KQ+rbMXTu8U9LFyE9gjnzlznTDuaP3hbuN4d7WLK+R3lnmUCorzVBye8k1PQsQpcLKfYpyeVFt3/kWHOmFSCI5MKvmZSCTqmv4v1nZ7k+R2bUwJ+1LuhuKEPs6g/sZ/mbdT2dtC1ttPjbHQxZzu35Oxmo/jY1m5meWve3j1uWL8AX83cp7/wfiRzNweCH9vc3TO2mzA33jnN6TtMO5O5VXVzTrqKbZ0244d/ \ No newline at end of file + \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index b297296..afc159a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -version = 0.1.12 +version = 0.1.13 pf4jVersion = 3.6.0 slf4jVersion = 1.7.36 -camelVersion = 3.14.2 +camelVersion = 3.14.3 groovyVersion = 3.0.10 picocliVersion = 4.6.3 -oshiVersion = 6.1.5 \ No newline at end of file +oshiVersion = 6.2.0 diff --git a/plugins/os-ibmi/build.gradle b/plugins/os-ibmi/build.gradle index 3cbc369..5cc4451 100644 --- a/plugins/os-ibmi/build.gradle +++ b/plugins/os-ibmi/build.gradle @@ -2,6 +2,6 @@ plugins { } dependencies { - // https://mvnrepository.com/artifact/net.sf.jt400/jt400 - implementation group: 'net.sf.jt400', name: 'jt400', version: '10.7' -} \ No newline at end of file + // https://sourceforge.net/projects/jt400/ and http://jt400.sourceforge.net/ + implementation group: 'net.sf.jt400', name: 'jt400', version: '11.0' +}