bin/check-elb-nodes.rb in sensu-plugins-aws-2.0.1 vs bin/check-elb-nodes.rb in sensu-plugins-aws-2.1.0

- old
+ new

@@ -15,14 +15,14 @@ # DEPENDENCIES: # gem: aws-sdk-v1 # gem: sensu-plugin # # USAGE: -# Warning if any load balancer's latency is over 1 second, critical if over 3 seconds. -# check-elb-latency --warning-over 1 --critical-over 3 +# Warning if the load balancer has 3 or fewer healthy nodes and critical if 2 or fewer +# check-elb-nodes --warn 3 --crit 2 # -# Critical if "app" load balancer's latency is over 5 seconds, maximum of last one hour -# check-elb-latency --elb-names app --critical-over 5 --statistics maximum --period 3600 +# Warning if the load balancer has 50% or less healthy nodes and critical if 25% or less +# check-elb-nodes --warn_perc 50 --crit_perc 25 # # NOTES: # # LICENSE: # Copyright (c) 2013, Justin Lambert <jlambert@letsevenup.com>