Class: Papertrail::Cli
- Inherits:
-
Object
- Object
- Papertrail::Cli
- Includes:
- CliHelpers
- Defined in:
- lib/papertrail/cli.rb
Instance Attribute Summary collapse
-
#connection ⇒ Object
readonly
Returns the value of attribute connection.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#query_options ⇒ Object
readonly
Returns the value of attribute query_options.
Instance Method Summary collapse
- #display_results(results) ⇒ Object
-
#initialize ⇒ Cli
constructor
A new instance of Cli.
- #query_time_range ⇒ Object
- #run ⇒ Object
- #usage ⇒ Object
Methods included from CliHelpers
#find_configfile, #load_configfile, #parse_time, #set_min_max_time!, #symbolize_keys
Constructor Details
#initialize ⇒ Cli
Returns a new instance of Cli.
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/papertrail/cli.rb', line 14 def initialize @options = { :configfile => nil, :delay => 2, :follow => false, :token => ENV['PAPERTRAIL_API_TOKEN'] } @query_options = {} end |
Instance Attribute Details
#connection ⇒ Object (readonly)
Returns the value of attribute connection.
12 13 14 |
# File 'lib/papertrail/cli.rb', line 12 def connection @connection end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
12 13 14 |
# File 'lib/papertrail/cli.rb', line 12 def @options end |
#query_options ⇒ Object (readonly)
Returns the value of attribute query_options.
12 13 14 |
# File 'lib/papertrail/cli.rb', line 12 def @query_options end |
Instance Method Details
#display_results(results) ⇒ Object
140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/papertrail/cli.rb', line 140 def display_results(results) if [:json] $stdout.puts results.data.to_json else results.events.each do |event| $stdout.puts event end end $stdout.flush end |
#query_time_range ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/papertrail/cli.rb', line 103 def query_time_range min_time = parse_time([:min_time]) if [:max_time] max_time = parse_time([:max_time]) end search_results = connection.query(ARGV[0], .merge(:min_time => min_time.to_i, :tail => false)).search loop do search_results.events.each do |event| # If we've found an event beyond what we were looking for, we're done if max_time && event.received_at > max_time break end if [:json] $stdout.puts event.data.to_json else $stdout.puts event end end # If we've found the end of what we're looking for, we're done if max_time && search_results.max_time_at > max_time break end if search_results.reached_end? break end # Perform the next search search_results = connection.query(ARGV[0], .merge(:min_id => search_results.max_id, :tail => false)).search end end |
#run ⇒ Object
25 26 27 28 29 30 31 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/papertrail/cli.rb', line 25 def run if configfile = find_configfile = load_configfile(configfile) .merge!() end OptionParser.new do |opts| opts. = "papertrail - command-line tail and search for Papertrail log management service" opts.on("-h", "--help", "Show usage") do |v| puts opts exit end opts.on("-f", "--follow", "Continue running and print new events (off)") do |v| [:follow] = true end opts.on("-d", "--delay SECONDS", "Delay between refresh (2)") do |v| [:delay] = v.to_i end opts.on("-c", "--configfile PATH", "Path to config (~/.papertrail.yml)") do |v| [:configfile] = File.(v) end opts.on("-s", "--system SYSTEM", "System to search") do |v| [:system] = v end opts.on("-g", "--group GROUP", "Group to search") do |v| [:group] = v end opts.on("-j", "--json", "Output raw json data") do |v| [:json] = true end opts.on("--min-time MIN", "Earliest time to search from.") do |v| [:min_time] = v end opts.on("--max-time MAX", "Latest time to search from.") do |v| [:max_time] = v end opts.separator usage end.parse! if [:configfile] = load_configfile([:configfile]) .merge!() end @connection = Papertrail::Connection.new() if [:system] [:system_id] = connection.find_id_for_source([:system]) unless [:system_id] abort "System \"#{[:system]}\" not found" end end if [:group] [:group_id] = connection.find_id_for_group([:group]) unless [:group_id] abort "Group \"#{[:group]}\" not found" end end if [:follow] search_query = connection.query(ARGV[0], ) loop do display_results(search_query.search) sleep [:delay] end elsif [:min_time] query_time_range else set_min_max_time!(, ) search_query = connection.query(ARGV[0], ) display_results(search_query.search) end end |
#usage ⇒ Object
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
# File 'lib/papertrail/cli.rb', line 153 def usage <<-EOF Usage: papertrail [-f] [-s system] [-g group] [-d seconds] [-c papertrail.yml] [-j] [--min-time mintime] [--max-time maxtime] [query] Examples: papertrail -f papertrail something papertrail 1.2.3 Failure papertrail -s ns1 "connection refused" papertrail -f "(www OR db) (nginx OR pgsql) -accepted" papertrail -f -g Production "(nginx OR pgsql) -accepted" papertrail -g Production --min-time 'yesterday at noon' --max-time 'today at 4am' More: https://papertrailapp.com/ EOF end |