lib/aws_logs/cli.rb in aws-logs-0.5.1 vs lib/aws_logs/cli.rb in aws-logs-1.0.0

- old
+ new

@@ -1,11 +1,11 @@ module AwsLogs class CLI < Command desc "tail LOG_GROUP", "Tail the CloudWatch log group." long_desc Help.text(:tail) option :since, desc: "From what time to begin displaying logs. By default, logs will be displayed starting from 10m in the past. The value provided can be an ISO 8601 timestamp or a relative time. Examples: 10m 2d 2w" - option :follow, default: true, type: :boolean, desc: " Whether to continuously poll for new logs. To exit from this mode, use Control-C." - option :format, default: "detailed", desc: "The format to display the logs. IE: detailed or short. With detailed, the log stream name is also shown." + option :follow, aliases: :f, default: false, type: :boolean, desc: "Whether to continuously poll for new logs. To exit from this mode, use Control-C." + option :format, default: "detailed", desc: "The format to display the logs. IE: detailed, short, plain. With detailed, the log stream name is also shown. Plain is the simplest andd does not show the timestamp or log stream name." option :log_stream_names, type: :array, desc: "Filters the results to only logs from the log streams. Can only use log_stream_names or log_stream_name_prefix but not both." option :log_stream_name_prefix, desc: "Filters the results to include only events from log streams that have names starting with this prefix. Can only use log_stream_names or log_stream_name_prefix but not both." option :filter_pattern, desc: "The filter pattern to use. If not provided, all the events are matched" option :follow_until, desc: "Exit out of the follow loop once this text is found." def tail(log_group_name)