riemann-cassandra 0.1.2-java → 0.1.3-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4077068474a36acb3451a61c8c27d2340fc08766
4
- data.tar.gz: 5b41b75ca8f5426fbb4e72276b707a8ed803fd62
3
+ metadata.gz: 911ac0cc7a790092c918a1c9bad343efa5de859d
4
+ data.tar.gz: 24f93e4ea6097e95d06ae1a54b01b3353fd60216
5
5
  SHA512:
6
- metadata.gz: 305df12e49c2c3a3538947440787374cd0de8774b17bf99e402469804f8e5bf94df83fb906b3aefce4986861c7c13659f94582fcb1f04a7df92a57f79168eb6d
7
- data.tar.gz: fe4c8f451dafb91013981ee818f9da4f68ef3f0a935deb9879f25563f6d1df5b3950fdf6c979a7580e556b6c8c193a2529174a18329abe67224520193a38025c
6
+ metadata.gz: f6f64620815d8fb0b586fd5c8a501076d1b0786757d5fa7c3420ba8a20671b5fed5e582c7fe7b8a982e101ce34da3d2f17da5131ff32b22bf36a9aabcab16a33
7
+ data.tar.gz: 1d38903b296027c9bf6b865a402f83c5df160611e8199baaa5fc19995d1d46fc5c56017e3d50ba3b48d5641133cfc22700890c44ca9982f95ae79c8ed880b598
data/README.md CHANGED
@@ -13,7 +13,7 @@ Gem for sending Cassandra metrics to Riemann. To use it you will need a JMX enab
13
13
  * Pending compaction tasks
14
14
  * Pending tasks (per stage)
15
15
  * Currently blocked tasks
16
- * (TODO) Load
16
+ * Load
17
17
  * (TODO) ParNew garbage collections (count|time)
18
18
  * (TODO) CMS garbage collections (count|time)
19
19
 
@@ -150,6 +150,11 @@ module Riemann
150
150
  {
151
151
  event: { service: 'blocked_tasks_request_response_stage', description: '' },
152
152
  jmx_path: { type: 'ThreadPools', path: 'request', scope: 'RequestResponseStage', name: 'CurrentlyBlockedTasks' }, attribute: 'Count'
153
+ },
154
+
155
+ {
156
+ event: { service: 'load', description: '' },
157
+ jmx_path: { type: 'Storage', name: 'Load' }, attribute: 'Count'
153
158
  }
154
159
  ]
155
160
  end
@@ -1,5 +1,5 @@
1
1
  module Riemann
2
2
  module Cassandra
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riemann-cassandra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: java
6
6
  authors:
7
7
  - Deyan Dobrinov