sensu-plugins-aws 12.3.0 → 12.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/bin/check-rds.rb +50 -33
- data/lib/sensu-plugins-aws/version.rb +1 -1
- metadata +68 -68
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1895a478402c34e2c5703cebe50c0f664186a137f96994a0acaefaeb31250f46
|
4
|
+
data.tar.gz: 3badfe13788ad3c38fa0def5ab363bdcec1230c271432bc88cec281db8ce7847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1e08bf9ecd537d37e9c0447ce8ba763411dfebb2446939a5b95ef745867000fb69f39fb807f2fbd8355cbdbcd30dbbe23887a8451e59ceaf0843c373196d945
|
7
|
+
data.tar.gz: 99795d3656689602ccc4efb59ed4c571b6c29e41ad2248d3e45c397dd10e0386fc9e4aab43118ddceccbee987667b1f347e4083d546cd8969184da5d1816d147
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [12.4.0] - 2018-10-03
|
9
|
+
### Changed
|
10
|
+
- check-rds.rb: Updated list of RDS instance types and their respective memory allowance (@swibowo)
|
11
|
+
|
8
12
|
## [12.3.0] - 2018-09-25
|
9
13
|
### Added
|
10
14
|
- check-s3-objects.rb: Allow check to run against the newest of multiple matching objects (@akatch)
|
@@ -502,7 +506,8 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
502
506
|
### Added
|
503
507
|
- initial release
|
504
508
|
|
505
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.
|
509
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.4.0...HEAD
|
510
|
+
[12.4.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.3.0...12.4.0
|
506
511
|
[12.3.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.2.0...12.3.0
|
507
512
|
[12.2.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.1.0...12.2.0
|
508
513
|
[12.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.0.0...12.1.0
|
data/bin/check-rds.rb
CHANGED
@@ -196,39 +196,56 @@ class CheckRDS < Sensu::Plugin::Check::CLI
|
|
196
196
|
|
197
197
|
def memory_total_bytes(instance_class)
|
198
198
|
memory_total_gigabytes = {
|
199
|
-
'db.cr1.8xlarge'
|
200
|
-
'db.m1.small'
|
201
|
-
'db.m1.medium'
|
202
|
-
'db.m1.large'
|
203
|
-
'db.m1.xlarge'
|
204
|
-
'db.m2.xlarge'
|
205
|
-
'db.m2.2xlarge'
|
206
|
-
'db.m2.4xlarge'
|
207
|
-
'db.m3.medium'
|
208
|
-
'db.m3.large'
|
209
|
-
'db.m3.xlarge'
|
210
|
-
'db.m3.2xlarge'
|
211
|
-
'db.m4.large'
|
212
|
-
'db.m4.xlarge'
|
213
|
-
'db.m4.2xlarge'
|
214
|
-
'db.m4.4xlarge'
|
215
|
-
'db.m4.10xlarge'
|
216
|
-
'db.
|
217
|
-
'db.
|
218
|
-
'db.
|
219
|
-
'db.
|
220
|
-
'db.
|
221
|
-
'db.
|
222
|
-
'db.
|
223
|
-
'db.
|
224
|
-
'db.
|
225
|
-
'db.
|
226
|
-
'db.
|
227
|
-
'db.
|
228
|
-
'db.
|
229
|
-
'db.
|
230
|
-
'db.
|
231
|
-
'db.
|
199
|
+
'db.cr1.8xlarge' => 244.0,
|
200
|
+
'db.m1.small' => 1.7,
|
201
|
+
'db.m1.medium' => 3.75,
|
202
|
+
'db.m1.large' => 7.5,
|
203
|
+
'db.m1.xlarge' => 15.0,
|
204
|
+
'db.m2.xlarge' => 17.1,
|
205
|
+
'db.m2.2xlarge' => 34.2,
|
206
|
+
'db.m2.4xlarge' => 68.4,
|
207
|
+
'db.m3.medium' => 3.75,
|
208
|
+
'db.m3.large' => 7.5,
|
209
|
+
'db.m3.xlarge' => 15.0,
|
210
|
+
'db.m3.2xlarge' => 30.0,
|
211
|
+
'db.m4.large' => 8.0,
|
212
|
+
'db.m4.xlarge' => 16.0,
|
213
|
+
'db.m4.2xlarge' => 32.0,
|
214
|
+
'db.m4.4xlarge' => 64.0,
|
215
|
+
'db.m4.10xlarge' => 160.0,
|
216
|
+
'db.m4.16xlarge' => 256.0,
|
217
|
+
'db.m5.large' => 8.0,
|
218
|
+
'db.m5.xlarge' => 16.0,
|
219
|
+
'db.m5.2xlarge' => 32.0,
|
220
|
+
'db.m5.4xlarge' => 64.0,
|
221
|
+
'db.m5.12xlarge' => 192.0,
|
222
|
+
'db.m5.24xlarge' => 384.0,
|
223
|
+
'db.r3.large' => 15.0,
|
224
|
+
'db.r3.xlarge' => 30.5,
|
225
|
+
'db.r3.2xlarge' => 61.0,
|
226
|
+
'db.r3.4xlarge' => 122.0,
|
227
|
+
'db.r3.8xlarge' => 244.0,
|
228
|
+
'db.r4.large' => 15.25,
|
229
|
+
'db.r4.xlarge' => 30.5,
|
230
|
+
'db.r4.2xlarge' => 61.0,
|
231
|
+
'db.r4.4xlarge' => 122.0,
|
232
|
+
'db.r4.8xlarge' => 244.0,
|
233
|
+
'db.r4.16xlarge' => 488.0,
|
234
|
+
'db.t1.micro' => 0.615,
|
235
|
+
'db.t2.micro' => 1.0,
|
236
|
+
'db.t2.small' => 2.0,
|
237
|
+
'db.t2.medium' => 4.0,
|
238
|
+
'db.t2.large' => 8.0,
|
239
|
+
'db.t2.xlarge' => 16.0,
|
240
|
+
'db.t2.2xlarge' => 32.0,
|
241
|
+
'db.x1.16xlarge' => 976.0,
|
242
|
+
'db.x1.32xlarge' => 1952.0,
|
243
|
+
'db.x1e.xlarge' => 122.0,
|
244
|
+
'db.x1e.2xlarge' => 244.0,
|
245
|
+
'db.x1e.4xlarge' => 488.0,
|
246
|
+
'db.x1e.8xlarge' => 976.0,
|
247
|
+
'db.x1e.16xlarge' => 1952.0,
|
248
|
+
'db.x1e.32xlarge' => 3904.0
|
232
249
|
}
|
233
250
|
|
234
251
|
memory_total_gigabytes.fetch(instance_class) * 1024**3
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-plugins-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.
|
4
|
+
version: 12.4.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: 2018-
|
11
|
+
date: 2018-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sensu-plugin
|
@@ -256,86 +256,86 @@ description: |-
|
|
256
256
|
for EC2, SES, and SNS.
|
257
257
|
email: "<sensu-users@googlegroups.com>"
|
258
258
|
executables:
|
259
|
-
- check-alb-target-group-health.rb
|
260
|
-
- check-asg-instances-created.rb
|
261
|
-
- check-asg-instances-inservice.rb
|
262
|
-
- check-autoscaling-cpucredits.rb
|
263
|
-
- check-beanstalk-elb-metric.rb
|
264
|
-
- check-beanstalk-health.rb
|
265
|
-
- check-certificate-expiry.rb
|
266
|
-
- check-cloudfront-tag.rb
|
267
|
-
- check-cloudwatch-alarm.rb
|
268
259
|
- check-cloudwatch-alarms.rb
|
269
|
-
-
|
270
|
-
-
|
271
|
-
- check-configservice-rules.rb
|
272
|
-
- check-direct-connect-virtual-interfaces.rb
|
273
|
-
- check-dynamodb-capacity.rb
|
274
|
-
- check-dynamodb-throttle.rb
|
260
|
+
- metrics-cloudfront.rb
|
261
|
+
- metrics-ses.rb
|
275
262
|
- check-ebs-burst-limit.rb
|
276
|
-
-
|
263
|
+
- handler-scale-asg-down.rb
|
264
|
+
- check-s3-bucket-visibility.rb
|
265
|
+
- check-trustedadvisor-service-limits.rb
|
266
|
+
- check-kms-key.rb
|
267
|
+
- check-ses-statistics.rb
|
268
|
+
- check-alb-target-group-health.rb
|
269
|
+
- check-ses-limit.rb
|
270
|
+
- check-sns-subscriptions.rb
|
271
|
+
- metrics-waf.rb
|
272
|
+
- metrics-autoscaling-instance-count.rb
|
273
|
+
- metrics-s3.rb
|
274
|
+
- check-s3-tag.rb
|
275
|
+
- check-dynamodb-throttle.rb
|
276
|
+
- handler-ec2_node.rb
|
277
277
|
- check-ec2-cpu_balance.rb
|
278
|
-
- check-
|
278
|
+
- check-beanstalk-health.rb
|
279
|
+
- metrics-asg.rb
|
280
|
+
- check-instances-count.rb
|
281
|
+
- check-elb-certs.rb
|
282
|
+
- check-reserved-instances.rb
|
283
|
+
- check-instance-health.rb
|
279
284
|
- check-ec2-network.rb
|
280
|
-
- check-ecs-service-health.rb
|
281
285
|
- check-efs-metric.rb
|
282
|
-
- check-
|
283
|
-
- check-elasticache-failover.rb
|
284
|
-
- check-elb-certs.rb
|
285
|
-
- check-elb-health-fog.rb
|
286
|
-
- check-elb-health-sdk.rb
|
287
|
-
- check-elb-health.rb
|
288
|
-
- check-elb-instances-inservice.rb
|
289
|
-
- check-elb-latency.rb
|
290
|
-
- check-elb-nodes.rb
|
291
|
-
- check-elb-sum-requests.rb
|
286
|
+
- check-sensu-client.rb
|
292
287
|
- check-emr-cluster.rb
|
293
|
-
-
|
294
|
-
- check-
|
295
|
-
- check-
|
296
|
-
- check-instance-health.rb
|
297
|
-
- check-instance-reachability.rb
|
298
|
-
- check-instances-count.rb
|
299
|
-
- check-kms-key.rb
|
300
|
-
- check-rds-events.rb
|
288
|
+
- handler-ses.rb
|
289
|
+
- check-asg-instances-inservice.rb
|
290
|
+
- check-sqs-messages.rb
|
301
291
|
- check-rds-pending.rb
|
302
|
-
- check-
|
292
|
+
- check-cloudwatch-metric.rb
|
293
|
+
- check-configservice-rules.rb
|
294
|
+
- check-beanstalk-elb-metric.rb
|
295
|
+
- check-elb-health.rb
|
296
|
+
- check-instance-reachability.rb
|
297
|
+
- check-emr-steps.rb
|
298
|
+
- check-elasticache-failover.rb
|
299
|
+
- check-eip-allocation.rb
|
300
|
+
- check-s3-object.rb
|
303
301
|
- check-redshift-events.rb
|
304
|
-
- check-
|
302
|
+
- check-ecs-service-health.rb
|
303
|
+
- check-autoscaling-cpucredits.rb
|
304
|
+
- check-s3-bucket.rb
|
305
|
+
- check-elb-health-sdk.rb
|
306
|
+
- check-cloudwatch-alarm.rb
|
305
307
|
- check-route.rb
|
308
|
+
- check-ebs-snapshots.rb
|
309
|
+
- metrics-ec2-filter.rb
|
306
310
|
- check-route53-domain-expiration.rb
|
307
|
-
-
|
308
|
-
- check-
|
309
|
-
- check-
|
310
|
-
- check-
|
311
|
-
- check-
|
312
|
-
-
|
313
|
-
- check-
|
314
|
-
-
|
315
|
-
- check-
|
311
|
+
- metrics-rds.rb
|
312
|
+
- check-dynamodb-capacity.rb
|
313
|
+
- check-ec2-filter.rb
|
314
|
+
- check-asg-instances-created.rb
|
315
|
+
- check-eni-status.rb
|
316
|
+
- metrics-sqs.rb
|
317
|
+
- check-instance-events.rb
|
318
|
+
- metrics-elasticache.rb
|
319
|
+
- check-rds-events.rb
|
316
320
|
- check-subnet-ip-consumption.rb
|
317
|
-
- check-
|
318
|
-
- check-
|
319
|
-
- check-
|
320
|
-
- handler-ec2_node.rb
|
321
|
-
- handler-scale-asg-down.rb
|
322
|
-
- handler-scale-asg-up.rb
|
323
|
-
- handler-ses.rb
|
321
|
+
- check-elb-nodes.rb
|
322
|
+
- check-elb-sum-requests.rb
|
323
|
+
- check-elb-health-fog.rb
|
324
324
|
- handler-sns.rb
|
325
|
-
-
|
326
|
-
-
|
327
|
-
-
|
328
|
-
-
|
325
|
+
- handler-scale-asg-up.rb
|
326
|
+
- check-vpc-nameservers.rb
|
327
|
+
- check-cloudwatch-composite-metric.rb
|
328
|
+
- check-rds.rb
|
329
|
+
- check-cloudfront-tag.rb
|
330
|
+
- metrics-emr-steps.rb
|
331
|
+
- check-certificate-expiry.rb
|
332
|
+
- check-elb-instances-inservice.rb
|
333
|
+
- check-elb-latency.rb
|
329
334
|
- metrics-ec2-count.rb
|
330
|
-
- metrics-
|
331
|
-
-
|
335
|
+
- metrics-billing.rb
|
336
|
+
- check-vpc-vpn.rb
|
337
|
+
- check-direct-connect-virtual-interfaces.rb
|
332
338
|
- metrics-elb.rb
|
333
|
-
- metrics-emr-steps.rb
|
334
|
-
- metrics-rds.rb
|
335
|
-
- metrics-s3.rb
|
336
|
-
- metrics-ses.rb
|
337
|
-
- metrics-sqs.rb
|
338
|
-
- metrics-waf.rb
|
339
339
|
extensions: []
|
340
340
|
extra_rdoc_files: []
|
341
341
|
files:
|