route(/aws elb\-req-sum ([0-9a-zA-Z_]+)[ ]*(.*)$/, help: help) do |response|
        opts = get_options_for_cloudwatch(response, ago: '2d', period: '300s')
        elb_name = response.matches.first.first
        cmd = "cloudwatch get-metric-statistics --namespace AWS/ELB --metric-name RequestCount --dimensions Name=LoadBalancerName,Value=#{elb_name} --start-time #{opts[:start_time]} --end-time #{opts[:end_time]} --period #{opts[:period]} --statistics Sum"
        data = exec_cli_json(cmd, opts[:cmd_opts])