Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

quiet not found option #4

Merged
merged 1 commit into from
Apr 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -2,5 +2,3 @@ source "https://rubygems.org"

# Specify your gem dependencies in aws-logs.gemspec
gemspec

gem "codeclimate-test-reporter", group: :test, require: nil
4 changes: 2 additions & 2 deletions lib/aws_logs/tail.rb
Original file line number Diff line number Diff line change
@@ -13,12 +13,12 @@ def initialize(options={})
set_trap
end

def data(since="1d")
def data(since="1d", quiet_not_found=false)
since, now = Since.new(since).to_i, current_now
resp = filter_log_events(since, now)
resp.events
rescue Aws::CloudWatchLogs::Errors::ResourceNotFoundException => e
puts "WARN: #{e.class}: #{e.message}"
puts "WARN: #{e.class}: #{e.message}" unless quiet_not_found
[]
end