├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── README.md ├── bin ├── btcfg.py ├── btmon.py ├── btmon3.py ├── edsmon.py ├── owfsmon.py ├── rtmon.py └── tedmon.py ├── doc ├── best-practices.html ├── btmon-howto.html ├── changes.txt ├── memory-use.txt └── styles.css ├── etc ├── btmon-sample.cfg ├── edsmon-sample.cfg ├── init.d │ ├── btmon │ ├── ecmread │ ├── edsmon │ ├── mtools │ ├── rtmon │ └── tedmon ├── logrotate.d │ ├── btmon │ ├── ecmread │ ├── edsmon │ ├── mtools │ ├── rtmon │ └── tedmon ├── rtmon-sample.cfg ├── systemd │ ├── btmon.service │ └── readme.txt └── tedmon-sample.cfg └── util └── logwatch ├── conf ├── logfiles │ └── btmon.conf └── services │ └── btmon.conf └── scripts └── services └── btmon /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/README.md -------------------------------------------------------------------------------- /bin/btcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/btcfg.py -------------------------------------------------------------------------------- /bin/btmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/btmon.py -------------------------------------------------------------------------------- /bin/btmon3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/btmon3.py -------------------------------------------------------------------------------- /bin/edsmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/edsmon.py -------------------------------------------------------------------------------- /bin/owfsmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/owfsmon.py -------------------------------------------------------------------------------- /bin/rtmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/rtmon.py -------------------------------------------------------------------------------- /bin/tedmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/bin/tedmon.py -------------------------------------------------------------------------------- /doc/best-practices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/doc/best-practices.html -------------------------------------------------------------------------------- /doc/btmon-howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/doc/btmon-howto.html -------------------------------------------------------------------------------- /doc/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/doc/changes.txt -------------------------------------------------------------------------------- /doc/memory-use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/doc/memory-use.txt -------------------------------------------------------------------------------- /doc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/doc/styles.css -------------------------------------------------------------------------------- /etc/btmon-sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/btmon-sample.cfg -------------------------------------------------------------------------------- /etc/edsmon-sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/edsmon-sample.cfg -------------------------------------------------------------------------------- /etc/init.d/btmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/init.d/btmon -------------------------------------------------------------------------------- /etc/init.d/ecmread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/init.d/ecmread -------------------------------------------------------------------------------- /etc/init.d/edsmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/init.d/edsmon -------------------------------------------------------------------------------- /etc/init.d/mtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/init.d/mtools -------------------------------------------------------------------------------- /etc/init.d/rtmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/init.d/rtmon -------------------------------------------------------------------------------- /etc/init.d/tedmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/init.d/tedmon -------------------------------------------------------------------------------- /etc/logrotate.d/btmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/logrotate.d/btmon -------------------------------------------------------------------------------- /etc/logrotate.d/ecmread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/logrotate.d/ecmread -------------------------------------------------------------------------------- /etc/logrotate.d/edsmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/logrotate.d/edsmon -------------------------------------------------------------------------------- /etc/logrotate.d/mtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/logrotate.d/mtools -------------------------------------------------------------------------------- /etc/logrotate.d/rtmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/logrotate.d/rtmon -------------------------------------------------------------------------------- /etc/logrotate.d/tedmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/logrotate.d/tedmon -------------------------------------------------------------------------------- /etc/rtmon-sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/rtmon-sample.cfg -------------------------------------------------------------------------------- /etc/systemd/btmon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/systemd/btmon.service -------------------------------------------------------------------------------- /etc/systemd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/systemd/readme.txt -------------------------------------------------------------------------------- /etc/tedmon-sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/etc/tedmon-sample.cfg -------------------------------------------------------------------------------- /util/logwatch/conf/logfiles/btmon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/util/logwatch/conf/logfiles/btmon.conf -------------------------------------------------------------------------------- /util/logwatch/conf/services/btmon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/util/logwatch/conf/services/btmon.conf -------------------------------------------------------------------------------- /util/logwatch/scripts/services/btmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenK22/mtools/HEAD/util/logwatch/scripts/services/btmon --------------------------------------------------------------------------------