sensu-plugins-jolokia 0.0.6 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f766899cab21d9c030123857b644dd5c0919a39
4
- data.tar.gz: 3e1b5ef6635cab42822864364b2e4eb34139e542
3
+ metadata.gz: bdc2a9cd8b2e2b856b833a412f013d541487dc62
4
+ data.tar.gz: a6daa289b96de01bcba8471d49207efdb67485ed
5
5
  SHA512:
6
- metadata.gz: 7408fb7552c043e72ab340edecfbf648c1c27d44dd2ac63dd07d3a3b7dba1c40b416e9bf1782ccccbf2f88f4d298929dc2a2ac5b78161d5842e3a0414711fd69
7
- data.tar.gz: e021a2f0d29abf35e81e0c159f6febe16cfc10c3da6152d6baf70ee04349427f3116220dca7031c6b912695a7dd689e7c2329073ece273c53105c775f3014fd6
6
+ metadata.gz: c44065b47c117a805f94f45b1cb53a5e7834399fd0a83e24d032ba56b84ec2da28e37b9b2111be87ce083da40eb75e9bb0bcee87ebb07b7601d950cd04a5cdbb
7
+ data.tar.gz: 6149006aee300713f881e690038737c407d7a163e05c06b54be73ffd78785909272dbbddbd71a894653eed5035c943abb03eae6b3412bbccda18be03d5419183
@@ -1,6 +1,43 @@
1
- #Change Log
1
+ # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- ## 0.0.1 - 2016-08-09
4
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
+
6
+ ## [Unreleased]
7
+
8
+ ## [1.0.0] - 2017-07-25
9
+ ### Changed
10
+ - misc changes to bring more things inline with standard and complete the transfer. (@majormoses)
11
+
12
+ ## [0.0.6] - 2016-09-23
13
+ ### Added
14
+ - check-jvm-thread-count-pcnt.rb: added a check for monitoring thread count % (@smbambling)
15
+
16
+ ## [0.0.5] - 2016-09-07
17
+ ### Fixed
18
+ - check-java-app-deployment.rb: use % used not % committed (@smbambling)
19
+
20
+ ## [0.0.4] - 2016-08-25
21
+ ### Fixed
22
+ - check-java-app-deployment.rb: fixed an issue when an app has whitespace in its name (@smbambling)
23
+
24
+ ## [0.0.3] - 2017-08-25
25
+ ### Fixed
26
+ - check-java-app-deployment.rb: fixed an issue with looping over apps (@smbambling)
27
+ - update the the badges to reflect its new home (@smbambling)
28
+
29
+ ## [0.0.2] - 2016-08-25
30
+ ### Changed
31
+ - transfered to arineng (@smbambling)
32
+
33
+ ## [0.0.1] - 2016-08-09
5
34
  ### Added
6
35
  - Initial release
36
+
37
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/1.0.0...HEAD
38
+ [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/v0.0.6...1.0.0
39
+ [0.0.6]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/v0.0.5...v0.0.6
40
+ [0.0.5]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/v0.0.4...v0.0.5
41
+ [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/v0.0.3...v0.0.2
42
+ [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/v0.0.2...v0.0.3
43
+ [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-jolokia/compare/v0.0.1...v0.0.2
data/README.md CHANGED
@@ -1,10 +1,8 @@
1
1
  ## sensu-plugins-jolokia
2
2
 
3
- [![Build Status](https://travis-ci.org/arineng/sensu-plugins-jolokia.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-jolokia)
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-jolokia.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-jolokia)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-jolokia.svg)](http://badge.fury.io/rb/sensu-plugins-jolokia)
5
- [![Code Climate](https://codeclimate.com/github/arineng/sensu-plugins-jolokia/badges/gpa.svg)](https://codeclimate.com/github/arineng/sensu-plugins-jolokia)
6
- [![Test Coverage](https://codeclimate.com/github/arineng/sensu-plugins-jolokia/badges/coverage.svg)](https://codeclimate.com/github/arineng/sensu-plugins-jolokia)
7
- [![Dependency Status](https://gemnasium.com/arineng/sensu-plugins-jolokia.svg)](https://gemnasium.com/arineng/sensu-plugins-jolokia)
5
+ [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-jolokia.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-jolokia)
8
6
 
9
7
  ## Functionality
10
8
 
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsJolokia
2
2
  module Version
3
- MAJOR = 0
3
+ MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 6
5
+ PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-jolokia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-23 00:00:00.000000000 Z
11
+ date: 2017-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  version: '0'
210
210
  requirements: []
211
211
  rubyforge_project:
212
- rubygems_version: 2.4.5.1
212
+ rubygems_version: 2.6.11
213
213
  signing_key:
214
214
  specification_version: 4
215
215
  summary: Sensu plugins for jolokia