Class: AwsLogs::Tail
- Inherits:
-
Object
- Object
- AwsLogs::Tail
- Includes:
- AwsServices
- Defined in:
- lib/aws_logs/tail.rb
Constant Summary collapse
- @@end_loop_signal =
The stop_follow! results in a little waiting because it signals to break the polling loop. Since it’s in the middle of the loop process, the loop will finish the sleep 5 first. So it can pause from 0-5 seconds.
false
Class Method Summary collapse
Instance Method Summary collapse
- #check_follow_until! ⇒ Object
-
#display ⇒ Object
Events canduplicated as events can be written to the exact same timestamp.
-
#initialize(options = {}) ⇒ Tail
constructor
A new instance of Tail.
- #output ⇒ Object
- #refresh_events(start_time, end_time) ⇒ Object
- #reset ⇒ Object
-
#run ⇒ Object
The start and end time is useful to limit results and make the API fast.
- #say(text) ⇒ Object
- #set_trap ⇒ Object
Methods included from AwsServices
Constructor Details
#initialize(options = {}) ⇒ Tail
Returns a new instance of Tail.
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/aws_logs/tail.rb', line 7 def initialize(={}) @options = @log_group_name = [:log_group_name] # Setting to ensure matches default CLI option @follow = @options[:follow].nil? ? true : @options[:follow] @loop_count = 0 @output = [] # for specs reset set_trap end |
Class Method Details
.stop_follow! ⇒ Object
129 130 131 |
# File 'lib/aws_logs/tail.rb', line 129 def self.stop_follow! @@end_loop_signal = true end |
Instance Method Details
#check_follow_until! ⇒ Object
102 103 104 105 106 107 108 |
# File 'lib/aws_logs/tail.rb', line 102 def check_follow_until! follow_until = @options[:follow_until] return unless follow_until = @events.map(&:message) @@end_loop_signal = .detect { |m| m.include?(follow_until) } end |
#display ⇒ Object
Events canduplicated as events can be written to the exact same timestamp. So also track the last_shown_event_id and prevent duplicate log lines from re-appearing.
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/aws_logs/tail.rb', line 84 def display new_events = @events shown_index = new_events.find_index { |e| e.event_id == @last_shown_event_id } if shown_index new_events = @events[shown_index+1..-1] || [] end new_events.each do |e| time = Time.at(e./1000).utc line = [time.to_s.color(:green), e.] format = @options[:format] || "detailed" line.insert(1, e.log_stream_name.color(:purple)) if format == "detailed" say line.join(' ') end @last_shown_event_id = @events.last&.event_id check_follow_until! end |
#output ⇒ Object
114 115 116 |
# File 'lib/aws_logs/tail.rb', line 114 def output @output.join("\n") + "\n" end |
#refresh_events(start_time, end_time) ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/aws_logs/tail.rb', line 58 def refresh_events(start_time, end_time) @events = [] next_token = :start # TODO: can hit throttle limit if there are lots of pages while next_token = { log_group_name: @log_group_name, # required start_time: start_time, end_time: end_time, # limit: 10, } [:log_stream_names] = @options[:log_stream_names] if @options[:log_stream_names] [:log_stream_name_prefix] = @options[:log_stream_name_prefix] if @options[:log_stream_name_prefix] [:filter_pattern] = @options[:filter_pattern] if @options[:filter_pattern] resp = cloudwatchlogs.filter_log_events() @events += resp.events next_token = resp.next_token end @events end |
#reset ⇒ Object
19 20 21 22 23 |
# File 'lib/aws_logs/tail.rb', line 19 def reset @events = [] # constantly replaced with recent events @last_shown_event_id = nil @completed = nil end |
#run ⇒ Object
The start and end time is useful to limit results and make the API fast. We’ll leverage it like so:
1. load all events from an initial since time
2. after that load events pass that first window
It’s a sliding window of time we’re using.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/aws_logs/tail.rb', line 32 def run if ENV['AWS_LOGS_NOOP'] puts "Noop test" return end # We overlap the sliding window because CloudWatch logs can receive or send the logs out of order. # For example, a bunch of logs can all come in at the same second, but they haven't registered to CloudWatch logs # yet. If we don't overlap the sliding window then we'll miss the logs that were delayed in registering. overlap = 60*1000 # overlap the sliding window by a minute since, now = initial_since, current_now until end_loop? refresh_events(since, now) display since, now = now-overlap, current_now loop_count! sleep 5 if @follow && !ENV["AWS_LOGS_TEST"] end # Refresh and display a final time in case the end_loop gets interrupted by stop_follow! refresh_events(since, now) display rescue Aws::CloudWatchLogs::Errors::ResourceNotFoundException => e puts "ERROR: #{e.class}: #{e.}".color(:red) puts "Log group #{@log_group_name} not found." end |
#say(text) ⇒ Object
110 111 112 |
# File 'lib/aws_logs/tail.rb', line 110 def say(text) ENV["AWS_LOGS_TEST"] ? @output << text : puts(text) end |
#set_trap ⇒ Object
118 119 120 121 122 123 |
# File 'lib/aws_logs/tail.rb', line 118 def set_trap Signal.trap("INT") { puts "\nCtrl-C detected. Exiting..." exit # immediate exit } end |