├── .bonsai.yml ├── .github ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── check-cmd.rb ├── check-process-restart.rb ├── check-process.rb ├── check-threads-count.rb ├── metrics-ipcs.rb ├── metrics-per-process.py ├── metrics-per-process.rb ├── metrics-process-status.rb ├── metrics-process-uptime.rb ├── metrics-process-uptime.sh └── metrics-processes-threads-count.rb ├── lib ├── sensu-plugins-process-checks.rb └── sensu-plugins-process-checks │ └── version.rb ├── sensu-plugins-process-checks.gemspec └── test ├── check-threads-count_spec.rb ├── fixtures └── metrics-ips_fixture.rb ├── metrics-ipcs_spec.rb ├── metrics-processes-threads-count_spec.rb ├── plugin_stub.rb └── spec_helper.rb /.bonsai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/.bonsai.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/check-cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/check-cmd.rb -------------------------------------------------------------------------------- /bin/check-process-restart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/check-process-restart.rb -------------------------------------------------------------------------------- /bin/check-process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/check-process.rb -------------------------------------------------------------------------------- /bin/check-threads-count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/check-threads-count.rb -------------------------------------------------------------------------------- /bin/metrics-ipcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-ipcs.rb -------------------------------------------------------------------------------- /bin/metrics-per-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-per-process.py -------------------------------------------------------------------------------- /bin/metrics-per-process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-per-process.rb -------------------------------------------------------------------------------- /bin/metrics-process-status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-process-status.rb -------------------------------------------------------------------------------- /bin/metrics-process-uptime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-process-uptime.rb -------------------------------------------------------------------------------- /bin/metrics-process-uptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-process-uptime.sh -------------------------------------------------------------------------------- /bin/metrics-processes-threads-count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/bin/metrics-processes-threads-count.rb -------------------------------------------------------------------------------- /lib/sensu-plugins-process-checks.rb: -------------------------------------------------------------------------------- 1 | require 'sensu-plugins-process-checks/version' 2 | -------------------------------------------------------------------------------- /lib/sensu-plugins-process-checks/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/lib/sensu-plugins-process-checks/version.rb -------------------------------------------------------------------------------- /sensu-plugins-process-checks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/sensu-plugins-process-checks.gemspec -------------------------------------------------------------------------------- /test/check-threads-count_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/test/check-threads-count_spec.rb -------------------------------------------------------------------------------- /test/fixtures/metrics-ips_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/test/fixtures/metrics-ips_fixture.rb -------------------------------------------------------------------------------- /test/metrics-ipcs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/test/metrics-ipcs_spec.rb -------------------------------------------------------------------------------- /test/metrics-processes-threads-count_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/test/metrics-processes-threads-count_spec.rb -------------------------------------------------------------------------------- /test/plugin_stub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu-plugins/sensu-plugins-process-checks/HEAD/test/plugin_stub.rb -------------------------------------------------------------------------------- /test/spec_helper.rb: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------