├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | .bundle 3 | vendor 4 | node_modules 5 | scripts/tech_debt.rb 6 | .vagrant/* 7 | *.gem 8 | 9 | #Intellij files 10 | *.iml 11 | *.idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person obtaining a copy of 2 | this software and associated documentation files (the "Software"), to deal in 3 | the Software without restriction, including without limitation the rights to 4 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 5 | of the Software, and to permit persons to whom the Software is furnished to do 6 | so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in all 9 | copies or substantial portions of the Software. 10 | 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 17 | SOFTWARE. 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SENSU/SENSU-COMMUNITY-PLUGINS IS NOW CLOSED 2 | 3 | # This repo is not currently accepting any new issues or pull requests if you are looking for plugins please go to the new [Sensu-Plugins](https://github.com/sensu-plugins) 4 | 5 | 6 | **[Sensu-Plugins Documentation](http://sensu-plugins.io)** (WIP) 7 | 8 | **[Sensu-Plugin Directory](http://sensu-plugins.io/plugins/)** (WIP) 9 | 10 | **[Sensu-Plugins Specific News](http://sensu-plugins.io/blog/)** 11 | 12 | ![sensu](https://raw.github.com/sensu/sensu/master/sensu-logo.png) 13 | 14 | ## License 15 | 16 | Copyright 2011 Sonian, Inc. and contributors. 17 | 18 | Released under the same terms as Sensu (the MIT license); see LICENSE 19 | for details. 20 | 21 | NOTE: When adding a plugin, copy the preceding two paragraphs to a 22 | comment in each source file, changing the copyright holder to your own 23 | name or organization. If you wish to use a different open source 24 | license, please submit a pull request adding that license to the repo 25 | and use that license's boilerplate instead. 26 | --------------------------------------------------------------------------------