-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt Jones
committed
May 1, 2015
1 parent
11e11bf
commit 7ed5809
Showing
11 changed files
with
99 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
|
||
MethodLength: | ||
Max: 200 | ||
Max: 200 | ||
|
||
LineLength: | ||
Max: 160 | ||
Max: 160 | ||
|
||
AbcSize: | ||
Max: 50 | ||
|
||
FileName: | ||
Enabled: false | ||
Enabled: false | ||
|
||
PerceivedComplexity: | ||
Enabled: false | ||
Enabled: false | ||
|
||
CyclomaticComplexity: | ||
Enabled: false | ||
Enabled: false | ||
|
||
ClassLength: | ||
Enabled: false | ||
Enabled: false | ||
|
||
IfUnlessModifier: | ||
Enabled: false | ||
Enabled: false | ||
|
||
RegexpLiteral: | ||
Enabled: false | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ notifications: | |
on_failure: always | ||
email: | ||
recipients: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
on_success: change | ||
on_failure: always | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,47 @@ | ||
#### 0.1.0-alpha.1 | ||
#Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
* baseline release identical to **sensu-community-plugins** repo | ||
* changed *check-procs* to *check-process* to better reflect its use | ||
* basic yard coverage | ||
* pinned dependencies | ||
* built against 1.9.3, 2.0, 2.1 | ||
* cryptographically signed | ||
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) | ||
|
||
#### 0.0.1-alpha.2 | ||
## Unreleased][unreleased] | ||
|
||
* bump Vagrant to Chef 6.6 | ||
* update LICENSE and gemspec authors | ||
* update README | ||
* add required Ruby version *>= 1.9.3* | ||
* add test/spec_help.rb | ||
## 0.0.1 - 2015-05-01 | ||
|
||
#### 0.0.1-alpha.3 | ||
### Added | ||
- initial release | ||
|
||
* add proc-status-metrics | ||
* change proc-status-metrics to process-status-metrics | ||
#### 0.0.1.alpha.6 | ||
|
||
* add chef provisioner to Vagrantfile | ||
* fix rubocop errors | ||
* add metadata to gemspec | ||
|
||
#### 0.0.1.alpha.5 | ||
|
||
* add new check for process uptime metrics | ||
|
||
#### 0.0.1.alpha.4 | ||
|
||
* convert scrips to sys-proctable gem for platform independence | ||
|
||
#### 0.0.1.alpha.5 | ||
#### 0.0.1-alpha.3 | ||
|
||
* add new check for process uptime metrics | ||
* add proc-status-metrics | ||
* change proc-status-metrics to process-status-metrics | ||
|
||
#### 0.0.1.alpha.6 | ||
#### 0.0.1-alpha.2 | ||
|
||
* add chef provisioner to Vagrantfile | ||
* fix rubocop errors | ||
* add metadata to gemspec | ||
* bump Vagrant to Chef 6.6 | ||
* update LICENSE and gemspec authors | ||
* update README | ||
* add required Ruby version *>= 1.9.3* | ||
* add test/spec_help.rb | ||
|
||
#### 0.1.0-alpha.1 | ||
|
||
* baseline release identical to **sensu-community-plugins** repo | ||
* changed *check-procs* to *check-process* to better reflect its use | ||
* basic yard coverage | ||
* pinned dependencies | ||
* built against 1.9.3, 2.0, 2.1 | ||
* cryptographically signed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2015 [email protected] | ||
Copyright (c) 2015 Sensu-Plugins | ||
|
||
MIT License | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
require 'sensu-plugins-process-checks/version' | ||
|
||
# Load the defaults | ||
|
||
# | ||
# Set gem version | ||
# Default class | ||
# | ||
module SensuPluginsProcessChecks | ||
# Gem version | ||
VERSION = '0.0.1.alpha.5' | ||
class << self | ||
end | ||
|
||
class << self | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
require 'json' | ||
|
||
# encoding: utf-8 | ||
module SensuPluginsProcessChecks | ||
# This defines the version of the gem | ||
module Version | ||
MAJOR = 0 | ||
MINOR = 0 | ||
PATCH = 1 | ||
|
||
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') | ||
|
||
NAME = 'sensu-plugins-process-checks' | ||
BANNER = "#{NAME} v%s" | ||
|
||
module_function | ||
|
||
def version | ||
format(BANNER, VER_STRING) | ||
end | ||
|
||
def json_version | ||
{ | ||
'version' => VER_STRING | ||
}.to_json | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters