loggability 0.15.1 → 0.18.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.rdoc +47 -0
- data/Manifest.txt +12 -4
- data/Rakefile +1 -1
- data/lib/loggability.rb +16 -13
- data/lib/loggability/log_device.rb +86 -0
- data/lib/loggability/log_device/appending.rb +34 -0
- data/lib/loggability/log_device/datadog.rb +90 -0
- data/lib/loggability/log_device/file.rb +37 -0
- data/lib/loggability/log_device/http.rb +310 -0
- data/lib/loggability/logger.rb +11 -37
- data/spec/helpers.rb +1 -1
- data/spec/loggability/log_device/appending_spec.rb +27 -0
- data/spec/loggability/log_device/datadog_spec.rb +67 -0
- data/spec/loggability/log_device/file_spec.rb +27 -0
- data/spec/loggability/log_device/http_spec.rb +217 -0
- data/spec/loggability/logger_spec.rb +43 -2
- data/spec/loggability_spec.rb +13 -0
- metadata +52 -26
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -667
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- rspec -*-
|
2
|
+
#encoding: utf-8
|
3
|
+
|
4
|
+
require 'tempfile'
|
5
|
+
require 'rspec'
|
6
|
+
|
7
|
+
require 'loggability/logger'
|
8
|
+
require 'loggability/log_device/file'
|
9
|
+
|
10
|
+
|
11
|
+
describe Loggability::LogDevice::File do
|
12
|
+
|
13
|
+
let( :logfile ) { Tempfile.new( 'test.log' ) }
|
14
|
+
let( :logger ) { described_class.new( logfile.path ) }
|
15
|
+
|
16
|
+
|
17
|
+
it "The logger is an instance of Loggability::LogDevice::File" do
|
18
|
+
expect( logger ).to be_instance_of( Loggability::LogDevice::File )
|
19
|
+
end
|
20
|
+
|
21
|
+
|
22
|
+
it "The log device is delegated to Ruby's built-in log device" do
|
23
|
+
expect( logger.target ).to be_instance_of( ::Logger::LogDevice )
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
@@ -0,0 +1,217 @@
|
|
1
|
+
# -*- rspec -*-
|
2
|
+
|
3
|
+
require_relative '../../helpers'
|
4
|
+
|
5
|
+
require 'tempfile'
|
6
|
+
require 'rspec'
|
7
|
+
|
8
|
+
require 'loggability/log_device/http'
|
9
|
+
|
10
|
+
|
11
|
+
describe Loggability::LogDevice::Http do
|
12
|
+
|
13
|
+
|
14
|
+
let( :http_client ) { instance_double(Net::HTTP) }
|
15
|
+
|
16
|
+
|
17
|
+
it "can be created with defaults" do
|
18
|
+
result = described_class.new
|
19
|
+
|
20
|
+
expect( result ).to be_an_instance_of( described_class )
|
21
|
+
expect( result.batch_interval ).to eq( described_class::DEFAULT_BATCH_INTERVAL )
|
22
|
+
expect( result.write_timeout ).to eq( described_class::DEFAULT_WRITE_TIMEOUT )
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
it "doesn't start when created" do
|
27
|
+
result = described_class.new
|
28
|
+
|
29
|
+
expect( result ).to_not be_running
|
30
|
+
end
|
31
|
+
|
32
|
+
|
33
|
+
it "sends logs when a full batch is ready" do
|
34
|
+
device = described_class.new( max_batch_size: 3, executor_class: Concurrent::ImmediateExecutor )
|
35
|
+
device.instance_variable_set( :@http_client, http_client )
|
36
|
+
|
37
|
+
expect( http_client ).to receive( :request ) do |request|
|
38
|
+
expect( request ).to be_a( Net::HTTP::Post )
|
39
|
+
expect( request['Content-type'] ).to match( %r|application/json|i )
|
40
|
+
expect( request.body ).to match( /message 1/i )
|
41
|
+
expect( request.body ).to match( /message 2/i )
|
42
|
+
expect( request.body ).to match( /message 3/i )
|
43
|
+
end
|
44
|
+
|
45
|
+
device.write( "Message 1" )
|
46
|
+
device.write( "Message 2" )
|
47
|
+
device.write( "Message 3" )
|
48
|
+
device.write( "Message 4" )
|
49
|
+
|
50
|
+
expect( device.logs_queue ).to have_attributes( length: 1 )
|
51
|
+
end
|
52
|
+
|
53
|
+
|
54
|
+
it "sends logs when enough time has elapsed since the last message" do
|
55
|
+
device = described_class.new(
|
56
|
+
max_batch_size: 3, batch_interval: 0.1, executor_class: Concurrent::ImmediateExecutor )
|
57
|
+
device.instance_variable_set( :@http_client, http_client )
|
58
|
+
device.start
|
59
|
+
device.timer_task.shutdown # Don't let the timer fire
|
60
|
+
|
61
|
+
expect( http_client ).to receive( :request ) do |request|
|
62
|
+
expect( request ).to be_a( Net::HTTP::Post )
|
63
|
+
expect( request['Content-type'] ).to match( %r|application/json|i )
|
64
|
+
expect( request.body ).to match( /message 1/i )
|
65
|
+
expect( request.body ).to match( /message 2/i )
|
66
|
+
end
|
67
|
+
|
68
|
+
device.write( "Message 1" )
|
69
|
+
|
70
|
+
# Now wait for the batch interval to pass and send another
|
71
|
+
sleep device.batch_interval
|
72
|
+
expect( device ).to have_batch_ready
|
73
|
+
device.write( "Message 2" )
|
74
|
+
|
75
|
+
expect( device.logs_queue ).to have_attributes( length: 0 )
|
76
|
+
end
|
77
|
+
|
78
|
+
|
79
|
+
it "sends logs on the batch interval even when messages aren't arriving" do
|
80
|
+
device = described_class.new(
|
81
|
+
max_batch_size: 3, batch_interval: 0.1, executor_class: Concurrent::ImmediateExecutor )
|
82
|
+
device.instance_variable_set( :@http_client, http_client )
|
83
|
+
|
84
|
+
expect( http_client ).to receive( :request ) do |request|
|
85
|
+
expect( request ).to be_a( Net::HTTP::Post )
|
86
|
+
expect( request['Content-type'] ).to match( %r|application/json|i )
|
87
|
+
expect( request.body ).to match( /message 1/i )
|
88
|
+
end
|
89
|
+
|
90
|
+
device.write( "Message 1" )
|
91
|
+
|
92
|
+
# Now wait for the batch interval to pass and send another
|
93
|
+
sleep device.batch_interval * 2
|
94
|
+
|
95
|
+
expect( device.logs_queue ).to have_attributes( length: 0 )
|
96
|
+
end
|
97
|
+
|
98
|
+
|
99
|
+
it "limits messages to the configured byte size constraints" do
|
100
|
+
device = described_class.new(
|
101
|
+
max_batch_size: 3,
|
102
|
+
max_message_bytesize: 1024,
|
103
|
+
batch_interval: 0.1,
|
104
|
+
executor_class: Concurrent::ImmediateExecutor )
|
105
|
+
device.instance_variable_set( :@http_client, http_client )
|
106
|
+
|
107
|
+
expect( http_client ).to receive( :request ) do |request|
|
108
|
+
expect( request ).to be_a( Net::HTTP::Post )
|
109
|
+
expect( request['Content-type'] ).to match( %r|application/json|i )
|
110
|
+
|
111
|
+
data = JSON.parse( request.body )
|
112
|
+
|
113
|
+
expect( data ).to all( have_attributes(bytesize: a_value <= 1024) )
|
114
|
+
end.at_least( :once )
|
115
|
+
|
116
|
+
device.write( "message data" * 10 ) # 120 bytes
|
117
|
+
device.write( "message data" * 100 ) # 1200 bytes
|
118
|
+
device.write( "message data" * 85 ) # 1020 bytes
|
119
|
+
device.write( "message data" * 86 ) # 1032 bytes
|
120
|
+
|
121
|
+
sleep( 0.1 ) until device.logs_queue.empty?
|
122
|
+
end
|
123
|
+
|
124
|
+
|
125
|
+
it "limits the batch to the configured byte size constraints" do
|
126
|
+
device = described_class.new(
|
127
|
+
max_batch_bytesize: 1024,
|
128
|
+
batch_interval: 0.1,
|
129
|
+
executor_class: Concurrent::ImmediateExecutor )
|
130
|
+
device.instance_variable_set( :@http_client, http_client )
|
131
|
+
|
132
|
+
expect( http_client ).to receive( :request ) do |request|
|
133
|
+
expect( request ).to be_a( Net::HTTP::Post )
|
134
|
+
expect( request['Content-type'] ).to match( %r|application/json|i )
|
135
|
+
|
136
|
+
expect( request.body.bytesize ).to be <= 1024
|
137
|
+
end.at_least( :once )
|
138
|
+
|
139
|
+
20.times { device.write( "message data" * 10 ) } # 120 bytes
|
140
|
+
20.times { device.write( "message data" * 100 ) } # 1200 bytes
|
141
|
+
20.times { device.write( "message data" * 85 ) } # 1020 bytes
|
142
|
+
20.times { device.write( "message data" * 86 ) } # 1032 bytes
|
143
|
+
|
144
|
+
sleep( 0.1 ) until device.logs_queue.empty?
|
145
|
+
end
|
146
|
+
|
147
|
+
|
148
|
+
it "uses an HTTP client for the appropriate host and port" do
|
149
|
+
device = described_class.new(
|
150
|
+
'http://logs.example.com:12881/v1/log_ingester',
|
151
|
+
executor_class: Concurrent::ImmediateExecutor )
|
152
|
+
http = device.http_client
|
153
|
+
|
154
|
+
expect( http.address ).to eq( 'logs.example.com' )
|
155
|
+
expect( http.port ).to eq( 12881 )
|
156
|
+
end
|
157
|
+
|
158
|
+
|
159
|
+
it "verifies the peer cert if sending to an HTTPS endpoint" do
|
160
|
+
device = described_class.new(
|
161
|
+
'https://logs.example.com:12881/v1/log_ingester',
|
162
|
+
executor_class: Concurrent::ImmediateExecutor )
|
163
|
+
http = device.http_client
|
164
|
+
|
165
|
+
expect( http.use_ssl? ).to be_truthy
|
166
|
+
expect( http.verify_mode ).to eq( OpenSSL::SSL::VERIFY_PEER )
|
167
|
+
end
|
168
|
+
|
169
|
+
|
170
|
+
it "stops queuing more messages if max queue size is reached" do
|
171
|
+
device = described_class.new(
|
172
|
+
max_batch_bytesize: 1024,
|
173
|
+
batch_interval: 100,
|
174
|
+
max_queue_bytesize: 100,
|
175
|
+
executor_class: Concurrent::ImmediateExecutor )
|
176
|
+
device.instance_variable_set( :@http_client, http_client )
|
177
|
+
|
178
|
+
expect( device ).to receive( :send_logs ).at_least( :once )
|
179
|
+
|
180
|
+
msg = "test message"
|
181
|
+
device.write(msg)
|
182
|
+
expect( device.logs_queue_bytesize == msg.bytesize )
|
183
|
+
|
184
|
+
hash_msg = { message: "This is a test log message", tags: ["tag1", "tag2"] }
|
185
|
+
device.write( hash_msg )
|
186
|
+
previous_bytesize = device.logs_queue_bytesize - hash_msg.to_json.bytesize
|
187
|
+
expect( device.logs_queue_bytesize ).to eq( hash_msg.to_json.bytesize + previous_bytesize )
|
188
|
+
|
189
|
+
queue_current_bytesize = device.logs_queue_bytesize
|
190
|
+
hash_msg = { message: "This is a test log message", tags: ["tag1", "tag2"] }
|
191
|
+
device.write( hash_msg )
|
192
|
+
expect( device.logs_queue_bytesize ).to eq( queue_current_bytesize )
|
193
|
+
end
|
194
|
+
|
195
|
+
|
196
|
+
it "reduces the queue bytesize once messages are sent" do
|
197
|
+
device = described_class.new(
|
198
|
+
max_batch_bytesize: 1024,
|
199
|
+
batch_interval: 100,
|
200
|
+
max_queue_bytesize: 100,
|
201
|
+
executor_class: Concurrent::ImmediateExecutor )
|
202
|
+
device.instance_variable_set( :@http_client, http_client )
|
203
|
+
|
204
|
+
expect( device ).to receive( :send_logs ).at_least( :once )
|
205
|
+
msg = "test message"
|
206
|
+
device.write(msg)
|
207
|
+
expect( device.logs_queue_bytesize == msg.bytesize )
|
208
|
+
|
209
|
+
msg = "this is just a test message"
|
210
|
+
device.write( msg )
|
211
|
+
previous_bytesize = device.logs_queue_bytesize - msg.bytesize
|
212
|
+
expect( device.logs_queue_bytesize ).to eq( msg.bytesize + previous_bytesize )
|
213
|
+
|
214
|
+
expect { device.get_next_log_payload }.to change { device.logs_queue_bytesize }.to( 0 )
|
215
|
+
end
|
216
|
+
|
217
|
+
end
|
@@ -106,6 +106,7 @@ describe Loggability::Logger do
|
|
106
106
|
expect( logger.level ).to eq( :warn )
|
107
107
|
end
|
108
108
|
|
109
|
+
|
109
110
|
it "defaults to :debug level when $DEBUG is true" do
|
110
111
|
begin
|
111
112
|
$DEBUG = true
|
@@ -115,6 +116,7 @@ describe Loggability::Logger do
|
|
115
116
|
end
|
116
117
|
end
|
117
118
|
|
119
|
+
|
118
120
|
it "allows its levels to be set with integers like Logger" do
|
119
121
|
newlevel = Logger::DEBUG
|
120
122
|
$stderr.puts "Setting newlevel to %p" % [ newlevel ]
|
@@ -122,11 +124,13 @@ describe Loggability::Logger do
|
|
122
124
|
expect( logger.level ).to eq( :debug )
|
123
125
|
end
|
124
126
|
|
127
|
+
|
125
128
|
it "allows its levels to be set with Symbolic level names" do
|
126
129
|
logger.level = :info
|
127
130
|
expect( logger.level ).to eq( :info )
|
128
131
|
end
|
129
132
|
|
133
|
+
|
130
134
|
it "allows its levels to be set with Stringish level names" do
|
131
135
|
logger.level = 'fatal'
|
132
136
|
expect( logger.level ).to eq( :fatal )
|
@@ -141,12 +145,14 @@ describe Loggability::Logger do
|
|
141
145
|
expect( logger.logdev.dev ).to be( $stderr )
|
142
146
|
end
|
143
147
|
|
148
|
+
|
144
149
|
it "can be told to log to a file" do
|
145
150
|
tmpfile = Tempfile.new( 'loggability-device-spec' )
|
146
151
|
logger.output_to( tmpfile.path )
|
147
152
|
expect( logger.logdev.dev ).to be_a( File )
|
148
153
|
end
|
149
154
|
|
155
|
+
|
150
156
|
it "supports log-rotation arguments for logfiles" do
|
151
157
|
tmpfile = Tempfile.new( 'loggability-device-spec' )
|
152
158
|
logger.output_to( tmpfile.path, 5, 125000 )
|
@@ -156,16 +162,45 @@ describe Loggability::Logger do
|
|
156
162
|
expect( logger.logdev.instance_variable_get(:@shift_size) ).to eq( 125000 )
|
157
163
|
end
|
158
164
|
|
165
|
+
|
166
|
+
it "can be told to log to a file and delegate to ruby's built-in logger log device" do
|
167
|
+
logfile = double( "logfile.log" )
|
168
|
+
expect( Loggability::LogDevice ).to receive( :create ).
|
169
|
+
with( :file, 'log_file.log' ).
|
170
|
+
and_return( logfile )
|
171
|
+
|
172
|
+
logfile = Loggability::LogDevice.create( :file, 'log_file.log' )
|
173
|
+
expect( logger ).to receive( :output_to ).
|
174
|
+
with( logfile ).
|
175
|
+
and_return( nil )
|
176
|
+
|
177
|
+
logger.output_to( logfile )
|
178
|
+
|
179
|
+
expect( logger.logdev ).to be_a( Logger::LogDevice )
|
180
|
+
end
|
181
|
+
|
182
|
+
|
183
|
+
it "can be told to log to a custom log device type" do
|
184
|
+
logger.output_to( :http, 'https://logapi.example.com:41133/v1/logintake' )
|
185
|
+
|
186
|
+
device = logger.logdev
|
187
|
+
|
188
|
+
expect( device ).to be_a( Loggability::LogDevice::Http )
|
189
|
+
expect( device.endpoint.to_s ).to eq( 'https://logapi.example.com:41133/v1/logintake' )
|
190
|
+
end
|
191
|
+
|
192
|
+
|
159
193
|
it "can be told to log to an Array" do
|
160
194
|
logmessages = []
|
161
195
|
logger.output_to( logmessages )
|
162
|
-
expect( logger.logdev ).to be_a( Loggability::
|
196
|
+
expect( logger.logdev ).to be_a( Loggability::LogDevice::Appending )
|
163
197
|
logger.level = :debug
|
164
198
|
logger.info( "Something happened." )
|
165
199
|
expect( logmessages.size ).to eq( 1 )
|
166
200
|
expect( logmessages.first ).to match( /something happened/i )
|
167
201
|
end
|
168
202
|
|
203
|
+
|
169
204
|
it "doesn't re-wrap a Logger::LogDevice" do
|
170
205
|
tmpfile = Tempfile.new( 'loggability-device-spec' )
|
171
206
|
logger.output_to( tmpfile.path, 5, 125000 )
|
@@ -176,7 +211,8 @@ describe Loggability::Logger do
|
|
176
211
|
expect( logger.logdev ).to be( original_logdev )
|
177
212
|
end
|
178
213
|
|
179
|
-
|
214
|
+
|
215
|
+
it "doesn't re-wrap an Appending log device" do
|
180
216
|
log_array = []
|
181
217
|
logger.output_to( log_array )
|
182
218
|
logger.output_to( logger.logdev )
|
@@ -193,11 +229,13 @@ describe Loggability::Logger do
|
|
193
229
|
expect( logger.formatter ).to be_a( Loggability::Formatter::Default )
|
194
230
|
end
|
195
231
|
|
232
|
+
|
196
233
|
it "can be told to use the default formatter explicitly" do
|
197
234
|
logger.format_as( :default )
|
198
235
|
expect( logger.formatter ).to be_a( Loggability::Formatter::Default )
|
199
236
|
end
|
200
237
|
|
238
|
+
|
201
239
|
it "can be told to use a block as a formatter" do
|
202
240
|
logger.format_with do |severity, datetime, progname, msg|
|
203
241
|
original_formatter.call(severity, datetime, progname, msg.dump)
|
@@ -206,11 +244,13 @@ describe Loggability::Logger do
|
|
206
244
|
expect( logger.formatter ).to be_a( Proc )
|
207
245
|
end
|
208
246
|
|
247
|
+
|
209
248
|
it "can be told to use the HTML formatter" do
|
210
249
|
logger.format_as( :html )
|
211
250
|
expect( logger.formatter ).to be_a( Loggability::Formatter::HTML )
|
212
251
|
end
|
213
252
|
|
253
|
+
|
214
254
|
it "supports formatting with ::Logger::Formatter, too" do
|
215
255
|
output = []
|
216
256
|
logger.output_to( output )
|
@@ -244,6 +284,7 @@ describe Loggability::Logger do
|
|
244
284
|
expect( messages.first ).to match( expected_format )
|
245
285
|
end
|
246
286
|
|
287
|
+
|
247
288
|
it "has a terse inspection format" do
|
248
289
|
object = Object.new
|
249
290
|
expect(
|
data/spec/loggability_spec.rb
CHANGED
@@ -161,6 +161,12 @@ describe Loggability do
|
|
161
161
|
expect( Loggability[loghost].logdev.dev ).to be( $stdout )
|
162
162
|
end
|
163
163
|
|
164
|
+
it "can propagate an outputter with arguments to every loghost" do
|
165
|
+
Loggability.output_to( :http, 'http://localhost:12771/v1/logs' )
|
166
|
+
expect( Loggability[loghost].logdev ).to be_a( Loggability::LogDevice )
|
167
|
+
expect( Loggability[loghost].logdev.endpoint ).to eq( URI('http://localhost:12771/v1/logs') )
|
168
|
+
end
|
169
|
+
|
164
170
|
it "can propagate a formatter to every loghost" do
|
165
171
|
Loggability.format_with( :color )
|
166
172
|
expect( Loggability[loghost].formatter ).to be_a( Loggability::Formatter::Color )
|
@@ -366,6 +372,13 @@ describe Loggability do
|
|
366
372
|
expect( result ).to eq([ 'info', 'html', '/usr/local/www/htdocs/log.html' ])
|
367
373
|
end
|
368
374
|
|
375
|
+
it 'can parse a logging confi spec with a severity, a http service name with its api key' do
|
376
|
+
result = Loggability.parse_config_spec('warn datadog[datadog_api_key]: (Color)')
|
377
|
+
expect( result[0] ).to eq( 'warn' )
|
378
|
+
expect( result[1] ).to eq( 'Color' )
|
379
|
+
expect( result[2].first ).to be_instance_of( Loggability::LogDevice::Datadog )
|
380
|
+
end
|
381
|
+
|
369
382
|
it "can configure loghosts via its ::configure method" do
|
370
383
|
config = {'class1' => 'debug (html)', 'class2' => 'error spec-error.log'}
|
371
384
|
Loggability.configure( config )
|
metadata
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: loggability
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MIID+DCCAmCgAwIBAgIBAzANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
14
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0yMDEyMjQyMDU1MjlaFw0yMTEyMjQyMDU1
|
15
|
+
MjlaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
16
16
|
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
17
17
|
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
18
18
|
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
@@ -21,20 +21,19 @@ cert_chain:
|
|
21
21
|
vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
|
22
22
|
dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
|
23
23
|
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
24
|
-
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
XrxOxp8o0uOkU7FdLSGsyqJ2LzsR4obN
|
24
|
+
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYD
|
25
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DANBgkqhkiG
|
26
|
+
9w0BAQsFAAOCAYEAMYegZanJi8zq7QKPT7wqXefX4C88I5JWeBHR3PvvWK0CwyMV
|
27
|
+
peyiu5I13w/lYX+HUZjE4qsSpJMJFXWl4WZCOo+AMprOcf0PxfuJpxCej5D4tavf
|
28
|
+
vRfhahSw7XJrcZih/3J+/UgoH7R05MJ+8LTcy3HGrB3a0vTafjm8OY7Xpa0LJDoN
|
29
|
+
JDqxK321VIHyTibbKeA1hWSE6ljlQDvFbTqiCj3Ulp1jTv3TOlvRl8fqcfhxUJI0
|
30
|
+
+5Q82jJODjEN+GaWs0V+NlrbU94cXwS2PH5dXogftB5YYA5Ex8A0ikZ73xns4Hdo
|
31
|
+
XxdLdd92F5ovxA23j/rKe/IDwqr6FpDkU3nPXH/Qp0TVGv9zZnVJc/Z6ChkuWj8z
|
32
|
+
pW7JAyyiiHZgKKDReDrA2LA7Zs3o/7KA6UtUH0FHf8LYhcK+pfHk6RtjRe65ffw+
|
33
|
+
MCh97sQ/Z/MOusb5+QddBmB+k8EicXyGNl4b5L4XpL7fIQu+Y96TB3JEJlShxFD9
|
34
|
+
k9FjI4d9EP54gS/4
|
36
35
|
-----END CERTIFICATE-----
|
37
|
-
date: 2020-
|
36
|
+
date: 2020-12-28 00:00:00.000000000 Z
|
38
37
|
dependencies:
|
39
38
|
- !ruby/object:Gem::Dependency
|
40
39
|
name: rake-deveiate
|
@@ -70,14 +69,14 @@ dependencies:
|
|
70
69
|
requirements:
|
71
70
|
- - "~>"
|
72
71
|
- !ruby/object:Gem::Version
|
73
|
-
version: '
|
72
|
+
version: '4.0'
|
74
73
|
type: :development
|
75
74
|
prerelease: false
|
76
75
|
version_requirements: !ruby/object:Gem::Requirement
|
77
76
|
requirements:
|
78
77
|
- - "~>"
|
79
78
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
79
|
+
version: '4.0'
|
81
80
|
- !ruby/object:Gem::Dependency
|
82
81
|
name: timecop
|
83
82
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,6 +105,20 @@ dependencies:
|
|
106
105
|
- - "~>"
|
107
106
|
- !ruby/object:Gem::Version
|
108
107
|
version: '0.4'
|
108
|
+
- !ruby/object:Gem::Dependency
|
109
|
+
name: concurrent-ruby
|
110
|
+
requirement: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - "~>"
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '1.1'
|
115
|
+
type: :development
|
116
|
+
prerelease: false
|
117
|
+
version_requirements: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - "~>"
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '1.1'
|
109
122
|
description: A composable logging system built on the standard Logger library.
|
110
123
|
email:
|
111
124
|
- ged@faeriemud.org
|
@@ -114,7 +127,6 @@ extensions: []
|
|
114
127
|
extra_rdoc_files: []
|
115
128
|
files:
|
116
129
|
- ".simplecov"
|
117
|
-
- ChangeLog
|
118
130
|
- History.rdoc
|
119
131
|
- Manifest.txt
|
120
132
|
- README.md
|
@@ -126,6 +138,11 @@ files:
|
|
126
138
|
- lib/loggability/formatter/default.rb
|
127
139
|
- lib/loggability/formatter/html.rb
|
128
140
|
- lib/loggability/formatter/structured.rb
|
141
|
+
- lib/loggability/log_device.rb
|
142
|
+
- lib/loggability/log_device/appending.rb
|
143
|
+
- lib/loggability/log_device/datadog.rb
|
144
|
+
- lib/loggability/log_device/file.rb
|
145
|
+
- lib/loggability/log_device/http.rb
|
129
146
|
- lib/loggability/logclient.rb
|
130
147
|
- lib/loggability/logger.rb
|
131
148
|
- lib/loggability/loghost.rb
|
@@ -137,6 +154,10 @@ files:
|
|
137
154
|
- spec/loggability/formatter/html_spec.rb
|
138
155
|
- spec/loggability/formatter/structured_spec.rb
|
139
156
|
- spec/loggability/formatter_spec.rb
|
157
|
+
- spec/loggability/log_device/appending_spec.rb
|
158
|
+
- spec/loggability/log_device/datadog_spec.rb
|
159
|
+
- spec/loggability/log_device/file_spec.rb
|
160
|
+
- spec/loggability/log_device/http_spec.rb
|
140
161
|
- spec/loggability/logger_spec.rb
|
141
162
|
- spec/loggability/loghost_spec.rb
|
142
163
|
- spec/loggability/override_spec.rb
|
@@ -145,14 +166,19 @@ files:
|
|
145
166
|
homepage: https://hg.sr.ht/~ged/Loggability
|
146
167
|
licenses:
|
147
168
|
- BSD-3-Clause
|
148
|
-
metadata:
|
149
|
-
|
169
|
+
metadata:
|
170
|
+
homepage_uri: https://hg.sr.ht/~ged/Loggability
|
171
|
+
documentation_uri: https://deveiate.org/code/loggability
|
172
|
+
changelog_uri: https://deveiate.org/code/loggability/History_md.html
|
173
|
+
source_uri: https://hg.sr.ht/~ged/Loggability/browse
|
174
|
+
bug_tracker_uri: https://todo.sr.ht/~ged/Loggability/browse
|
175
|
+
post_install_message:
|
150
176
|
rdoc_options: []
|
151
177
|
require_paths:
|
152
178
|
- lib
|
153
179
|
required_ruby_version: !ruby/object:Gem::Requirement
|
154
180
|
requirements:
|
155
|
-
- - "
|
181
|
+
- - ">="
|
156
182
|
- !ruby/object:Gem::Version
|
157
183
|
version: '2.5'
|
158
184
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
@@ -161,8 +187,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
161
187
|
- !ruby/object:Gem::Version
|
162
188
|
version: '0'
|
163
189
|
requirements: []
|
164
|
-
rubygems_version: 3.
|
165
|
-
signing_key:
|
190
|
+
rubygems_version: 3.2.3
|
191
|
+
signing_key:
|
166
192
|
specification_version: 4
|
167
193
|
summary: A composable logging system built on the standard Logger library.
|
168
194
|
test_files: []
|