fluent-plugin-detect-exceptions 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bd67c27320343db8814da83c67d39b82efc6da11
4
- data.tar.gz: 6e14006ddb6d8983685589f1eda4e73d8c9ccace
3
+ metadata.gz: 01a062ab7c8327c6be24ebe4d3cea539f25e14f0
4
+ data.tar.gz: 634af7fd1eaa23b67201dbbef7f3d14dce6a2859
5
5
  SHA512:
6
- metadata.gz: 4228c63bfd7f172e227bc18bfa1c734a18be6d624ddda5707d2ac1cd0b1e0f55b3f3dcc33aaf7211ce8961fb88057edf3ddf18c8291fdce9e9d63b3a3e79d09c
7
- data.tar.gz: f4051a0348aa4d6708decb6fb92279963480f4c56c97c856f25cff4a49f21beca6a4867dfbce7185556cf5645b89d1d503dab1d9ab7556d09487976d07a661b6
6
+ metadata.gz: 739b621a840194dfa55b81ddc3be796f99c93555cc632e9c9bc26019414dd6a5d1953c042b4562df3cc7cabe2d3cb0af4ec840488054705747795867a13926d6
7
+ data.tar.gz: d46340cb11dd87d0e551090da0111f6ace115a07e946abb441f98b6fa63fc974315523db13d441e0da994ec1e5863cd5cba5b18f3e4be10228bf0136f3d28cf3
@@ -11,9 +11,9 @@ eos
11
11
  gem.homepage = \
12
12
  'https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions'
13
13
  gem.license = 'Apache-2.0'
14
- gem.version = '0.0.5'
15
- gem.authors = ['Thomas Schickinger']
16
- gem.email = ['schickin@google.com']
14
+ gem.version = '0.0.6'
15
+ gem.authors = ['Thomas Schickinger', 'Igor Peshansky']
16
+ gem.email = ['schickin@google.com', 'igorp@google.com']
17
17
  gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
18
18
 
19
19
  gem.files = Dir['**/*'].keep_if { |file| File.file?(file) }
@@ -84,7 +84,9 @@ module Fluent
84
84
  ].freeze
85
85
 
86
86
  RUBY_RULES = [
87
- rule(:start_state, /Error \(.*\):$/, :ruby),
87
+ rule(:start_state, /Error \(.*\):$/, :ruby_before_rails_trace),
88
+ rule(:ruby_before_rails_trace, /^ $/, :ruby),
89
+ rule(:ruby_before_rails_trace, /^[\t ]+.*?\.rb:\d+:in `/, :ruby),
88
90
  rule(:ruby, /^[\t ]+.*?\.rb:\d+:in `/, :ruby)
89
91
  ].freeze
90
92
 
@@ -175,6 +175,33 @@ END
175
175
  config/error_reporting_logger.rb:62:in `tagged'
176
176
  END
177
177
 
178
+ # The whitespace on the second line is significant.
179
+ RAILS_EXC = <<END.freeze
180
+ ActionController::RoutingError (No route matches [GET] "/settings"):
181
+
182
+ actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call'
183
+ actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
184
+ railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app'
185
+ railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call'
186
+ activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged'
187
+ activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
188
+ activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged'
189
+ railties (5.1.4) lib/rails/rack/logger.rb:24:in `call'
190
+ actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
191
+ actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call'
192
+ rack (2.0.3) lib/rack/method_override.rb:22:in `call'
193
+ rack (2.0.3) lib/rack/runtime.rb:22:in `call'
194
+ activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'
195
+ actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call'
196
+ rack (2.0.3) lib/rack/sendfile.rb:111:in `call'
197
+ railties (5.1.4) lib/rails/engine.rb:522:in `call'
198
+ puma (3.10.0) lib/puma/configuration.rb:225:in `call'
199
+ puma (3.10.0) lib/puma/server.rb:605:in `handle_request'
200
+ puma (3.10.0) lib/puma/server.rb:437:in `process_client'
201
+ puma (3.10.0) lib/puma/server.rb:301:in `block in run'
202
+ puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread'
203
+ END
204
+
178
205
  ARBITRARY_TEXT = <<END.freeze
179
206
  This arbitrary text.
180
207
  I am glad it contains no exception.
@@ -245,6 +272,7 @@ END
245
272
 
246
273
  def test_ruby
247
274
  check_exception(RUBY_EXC, false)
275
+ check_exception(RAILS_EXC, false)
248
276
  end
249
277
 
250
278
  def test_mixed_languages
@@ -29,8 +29,11 @@ END
29
29
  ARBITRARY_TEXT = 'This line is not an exception.'.freeze
30
30
 
31
31
  JAVA_EXC = <<END.freeze
32
- Exception: foo
32
+ SomeException: foo
33
33
  at bar
34
+ Caused by: org.AnotherException
35
+ at bar2
36
+ at bar3
34
37
  END
35
38
 
36
39
  PYTHON_EXC = <<END.freeze
@@ -175,10 +178,12 @@ END
175
178
  # Expected: the first two lines of the exception are buffered and combined.
176
179
  # Then the max_lines setting kicks in and the rest of the Python exception
177
180
  # is logged line-by-line (since it's not an exception stack in itself).
178
- # Finally, the Java exception is logged in its entirety, since it only
179
- # has two lines.
180
- expected =
181
- [PYTHON_EXC.lines[0..1].join] + PYTHON_EXC.lines[2..-1] + [JAVA_EXC]
181
+ # For the following Java stack trace, the two lines of the first exception
182
+ # are buffered and combined. So are the first two lines of the second
183
+ # exception. Then the rest is logged line-by-line.
184
+ expected = [PYTHON_EXC.lines[0..1].join] + PYTHON_EXC.lines[2..-1] + \
185
+ [JAVA_EXC.lines[0..1].join] + [JAVA_EXC.lines[2..3].join] + \
186
+ JAVA_EXC.lines[4.. -1]
182
187
  assert_equal(make_logs(t, *expected), d.events)
183
188
  end
184
189
 
metadata CHANGED
@@ -1,41 +1,42 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-detect-exceptions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Schickinger
8
+ - Igor Peshansky
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2017-02-02 00:00:00.000000000 Z
12
+ date: 2017-09-17 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: fluentd
15
16
  requirement: !ruby/object:Gem::Requirement
16
17
  requirements:
17
- - - "~>"
18
+ - - ~>
18
19
  - !ruby/object:Gem::Version
19
20
  version: '0.10'
20
21
  type: :runtime
21
22
  prerelease: false
22
23
  version_requirements: !ruby/object:Gem::Requirement
23
24
  requirements:
24
- - - "~>"
25
+ - - ~>
25
26
  - !ruby/object:Gem::Version
26
27
  version: '0.10'
27
28
  - !ruby/object:Gem::Dependency
28
29
  name: rake
29
30
  requirement: !ruby/object:Gem::Requirement
30
31
  requirements:
31
- - - "~>"
32
+ - - ~>
32
33
  - !ruby/object:Gem::Version
33
34
  version: '10.3'
34
35
  type: :development
35
36
  prerelease: false
36
37
  version_requirements: !ruby/object:Gem::Requirement
37
38
  requirements:
38
- - - "~>"
39
+ - - ~>
39
40
  - !ruby/object:Gem::Version
40
41
  version: '10.3'
41
42
  - !ruby/object:Gem::Dependency
@@ -56,14 +57,14 @@ dependencies:
56
57
  name: test-unit
57
58
  requirement: !ruby/object:Gem::Requirement
58
59
  requirements:
59
- - - "~>"
60
+ - - ~>
60
61
  - !ruby/object:Gem::Version
61
62
  version: '3.0'
62
63
  type: :development
63
64
  prerelease: false
64
65
  version_requirements: !ruby/object:Gem::Requirement
65
66
  requirements:
66
- - - "~>"
67
+ - - ~>
67
68
  - !ruby/object:Gem::Version
68
69
  version: '3.0'
69
70
  description: |2
@@ -73,23 +74,19 @@ description: |2
73
74
  This is an official Google Ruby gem.
74
75
  email:
75
76
  - schickin@google.com
77
+ - igorp@google.com
76
78
  executables: []
77
79
  extensions: []
78
80
  extra_rdoc_files: []
79
81
  files:
80
82
  - CONTRIBUTING
81
- - Gemfile
82
- - Gemfile.lock
83
- - LICENSE
84
- - README.rdoc
85
- - Rakefile
86
83
  - fluent-plugin-detect-exceptions.gemspec
87
- - fluent-plugin-detect-exceptions.sublime-project
88
- - fluent-plugin-detect-exceptions.sublime-workspace
84
+ - Gemfile
89
85
  - lib/fluent/plugin/exception_detector.rb
90
86
  - lib/fluent/plugin/out_detect_exceptions.rb
91
- - measure_memory.sh
92
- - pkg/fluent-plugin-detect-exceptions-0.0.4.gem
87
+ - LICENSE
88
+ - Rakefile
89
+ - README.rdoc
93
90
  - test/helper.rb
94
91
  - test/plugin/bench_exception_detector.rb
95
92
  - test/plugin/test_exception_detector.rb
@@ -104,17 +101,17 @@ require_paths:
104
101
  - lib
105
102
  required_ruby_version: !ruby/object:Gem::Requirement
106
103
  requirements:
107
- - - ">="
104
+ - - '>='
108
105
  - !ruby/object:Gem::Version
109
106
  version: '2.0'
110
107
  required_rubygems_version: !ruby/object:Gem::Requirement
111
108
  requirements:
112
- - - ">="
109
+ - - '>='
113
110
  - !ruby/object:Gem::Version
114
111
  version: '0'
115
112
  requirements: []
116
113
  rubyforge_project:
117
- rubygems_version: 2.4.8
114
+ rubygems_version: 2.0.14.1
118
115
  signing_key:
119
116
  specification_version: 4
120
117
  summary: fluentd output plugin for combining stack traces as multi-line JSON logs
@@ -1,60 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- fluent-plugin-detect-exceptions (0.0.4)
5
- fluentd (~> 0.10, <= 0.13)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- ast (2.3.0)
11
- cool.io (1.4.4)
12
- fluentd (0.12.26)
13
- cool.io (>= 1.2.2, < 2.0.0)
14
- http_parser.rb (>= 0.5.1, < 0.7.0)
15
- json (>= 1.4.3)
16
- msgpack (>= 0.5.11, < 0.6.0)
17
- sigdump (~> 0.2.2)
18
- string-scrub (>= 0.0.3, <= 0.0.5)
19
- tzinfo (>= 1.0.0)
20
- tzinfo-data (>= 1.0.0)
21
- yajl-ruby (~> 1.0)
22
- http_parser.rb (0.6.0)
23
- json (2.0.2)
24
- msgpack (0.5.12)
25
- parser (2.3.1.2)
26
- ast (~> 2.2)
27
- power_assert (0.3.0)
28
- powerpack (0.1.1)
29
- rainbow (2.1.0)
30
- rake (10.5.0)
31
- rubocop (0.42.0)
32
- parser (>= 2.3.1.1, < 3.0)
33
- powerpack (~> 0.1)
34
- rainbow (>= 1.99.1, < 3.0)
35
- ruby-progressbar (~> 1.7)
36
- unicode-display_width (~> 1.0, >= 1.0.1)
37
- ruby-progressbar (1.8.1)
38
- sigdump (0.2.4)
39
- string-scrub (0.0.5)
40
- test-unit (3.2.1)
41
- power_assert
42
- thread_safe (0.3.5)
43
- tzinfo (1.2.2)
44
- thread_safe (~> 0.1)
45
- tzinfo-data (1.2016.6)
46
- tzinfo (>= 1.0.0)
47
- unicode-display_width (1.1.0)
48
- yajl-ruby (1.2.1)
49
-
50
- PLATFORMS
51
- ruby
52
-
53
- DEPENDENCIES
54
- fluent-plugin-detect-exceptions!
55
- rake (~> 10.3)
56
- rubocop (= 0.42.0)
57
- test-unit (~> 3.0)
58
-
59
- BUNDLED WITH
60
- 1.12.5
@@ -1,8 +0,0 @@
1
- {
2
- "folders":
3
- [
4
- {
5
- "path": "."
6
- }
7
- ]
8
- }
@@ -1,1595 +0,0 @@
1
- {
2
- "auto_complete":
3
- {
4
- "selected_items":
5
- [
6
- [
7
- "log",
8
- "log_entry"
9
- ],
10
- [
11
- "acc",
12
- "accumulator_key"
13
- ],
14
- [
15
- "stream",
16
- "stream_name"
17
- ],
18
- [
19
- "ac",
20
- "accumulator_key"
21
- ],
22
- [
23
- "l",
24
- "limit"
25
- ],
26
- [
27
- "forc",
28
- "force_flush"
29
- ],
30
- [
31
- "trac",
32
- "trace_seen_before"
33
- ],
34
- [
35
- "max",
36
- "max_bytes"
37
- ],
38
- [
39
- "mes",
40
- "messages"
41
- ],
42
- [
43
- "JAV",
44
- "JAVA_EXC_PART1"
45
- ],
46
- [
47
- "JAVA",
48
- "JAVA_EXC_PART2"
49
- ],
50
- [
51
- "JAVA_EXC_P",
52
- "JAVA_EXC_PART1"
53
- ],
54
- [
55
- "mxa",
56
- "max_bytes"
57
- ],
58
- [
59
- "max_",
60
- "max_lines"
61
- ],
62
- [
63
- "config",
64
- "config_param"
65
- ],
66
- [
67
- "for",
68
- "force_flush"
69
- ],
70
- [
71
- "lange",
72
- "languages"
73
- ],
74
- [
75
- "message",
76
- "message_field"
77
- ],
78
- [
79
- "check_flu",
80
- "check_flush_loop"
81
- ],
82
- [
83
- "trace_se",
84
- "trace_seen_after"
85
- ],
86
- [
87
- "trace_seen",
88
- "trace_seen_before"
89
- ],
90
- [
91
- "trace_",
92
- "trace_detected"
93
- ],
94
- [
95
- "insid",
96
- "inside_trace"
97
- ],
98
- [
99
- "out_tag",
100
- "out_tag_start"
101
- ],
102
- [
103
- "remo",
104
- "remove_tag_prefix"
105
- ],
106
- [
107
- "flush",
108
- "flush_buffer_mutex"
109
- ],
110
- [
111
- "mess",
112
- "message_field"
113
- ],
114
- [
115
- "first",
116
- "first_timestamp"
117
- ],
118
- [
119
- "combin",
120
- "combined_message"
121
- ],
122
- [
123
- "first_",
124
- "first_record"
125
- ],
126
- [
127
- "fi",
128
- "first_record"
129
- ],
130
- [
131
- "buff",
132
- "buffer_start"
133
- ],
134
- [
135
- "mul",
136
- "multiline_flush_interval"
137
- ],
138
- [
139
- "check",
140
- "check_flush_interval"
141
- ],
142
- [
143
- "exc",
144
- "exc_languages"
145
- ],
146
- [
147
- "det",
148
- "detector_lang"
149
- ],
150
- [
151
- "detec",
152
- "detector_lang"
153
- ],
154
- [
155
- "lin",
156
- "line_length"
157
- ],
158
- [
159
- "size",
160
- "size_in_m"
161
- ],
162
- [
163
- "lang",
164
- "languages"
165
- ],
166
- [
167
- "Ex",
168
- "Exception"
169
- ],
170
- [
171
- "R",
172
- "RULES_BY_LANG"
173
- ],
174
- [
175
- "JA",
176
- "JAVA_EXC_PART1"
177
- ],
178
- [
179
- "JAVA_EXC_PA",
180
- "JAVA_EXC_PART2"
181
- ],
182
- [
183
- "JAVA_EXC_",
184
- "JAVA_EXC_PART1"
185
- ],
186
- [
187
- "J",
188
- "JAVA_EXC"
189
- ],
190
- [
191
- "check_",
192
- "check_multiline"
193
- ],
194
- [
195
- "go_fra",
196
- "go_frame_1"
197
- ],
198
- [
199
- "go",
200
- "go_before_goroutine"
201
- ],
202
- [
203
- "PHP",
204
- "PHP_RULES"
205
- ],
206
- [
207
- "emit",
208
- "emits_at_end"
209
- ],
210
- [
211
- "buf",
212
- "buffer_and_emit"
213
- ],
214
- [
215
- "to",
216
- "to_state"
217
- ],
218
- [
219
- "pa",
220
- "pattern"
221
- ],
222
- [
223
- "ex",
224
- "exception"
225
- ],
226
- [
227
- "fluent",
228
- "fluent_time"
229
- ],
230
- [
231
- "feed",
232
- "feed_lines"
233
- ],
234
- [
235
- "test_",
236
- "test_output"
237
- ],
238
- [
239
- "fir",
240
- "firstline"
241
- ],
242
- [
243
- "PAR",
244
- "parse_multilines"
245
- ],
246
- [
247
- "mult",
248
- "MultilineParser"
249
- ],
250
- [
251
- "te",
252
- "timestamp"
253
- ],
254
- [
255
- "expectedG",
256
- "expectedGroups []int ν"
257
- ],
258
- [
259
- "proj",
260
- "projectData struct ʈ"
261
- ],
262
- [
263
- "p",
264
- "projectData struct ʈ"
265
- ],
266
- [
267
- "project",
268
- "projectData struct ʈ"
269
- ],
270
- [
271
- "nu",
272
- "numGroups int32 ν"
273
- ],
274
- [
275
- "num",
276
- "numGroups int32 ν"
277
- ],
278
- [
279
- "g",
280
- "gcHorizon int ν"
281
- ],
282
- [
283
- "d",
284
- "deletedGroups []uint64 ν"
285
- ],
286
- [
287
- "la",
288
- "latestDeletion time.Time ν"
289
- ],
290
- [
291
- "No",
292
- "Now time.Time ƒ"
293
- ],
294
- [
295
- "Mi",
296
- "Minute Ɩ"
297
- ],
298
- [
299
- "S",
300
- "Stop ƒ"
301
- ],
302
- [
303
- "t",
304
- "tryLaunch ƒ"
305
- ],
306
- [
307
- "dbA",
308
- "dbActivity int ʈ"
309
- ],
310
- [
311
- "Af",
312
- "AfterFunc *time.Timer ƒ"
313
- ],
314
- [
315
- "clea",
316
- "cleanupAction struct ʈ"
317
- ],
318
- [
319
- "fa",
320
- "fakeDB struct ʈ"
321
- ],
322
- [
323
- "de",
324
- "deletedOrphansCounter ν"
325
- ],
326
- [
327
- "e",
328
- "expectedMetric map[metricKeys]int ν"
329
- ],
330
- [
331
- "gr",
332
- "groupID uint64 ν"
333
- ],
334
- [
335
- "New",
336
- "NewerUpdateError time.Time ʈ"
337
- ],
338
- [
339
- "cleanup",
340
- "cleanupAllDBs error ƒ"
341
- ],
342
- [
343
- "depl",
344
- "deploymentKey string ν"
345
- ],
346
- [
347
- "groupsB",
348
- "groupsByProject map[int64][]group ʈ"
349
- ],
350
- [
351
- "clean",
352
- "cleanupDB error ƒ"
353
- ],
354
- [
355
- "ma",
356
- "maxLastUpdated time.Time ν"
357
- ],
358
- [
359
- "deplo",
360
- "deployments []deployment ν"
361
- ],
362
- [
363
- "defaultM",
364
- "defaultMinDeploymentsRetentionHours Ɩ"
365
- ],
366
- [
367
- "last",
368
- "lastUpdatedTime time.Time ƒ"
369
- ],
370
- [
371
- "group",
372
- "groupIDs []uint64 ν"
373
- ],
374
- [
375
- "db",
376
- "dbContent map[uint64]time.Time ν"
377
- ],
378
- [
379
- "ou",
380
- "outdatedGroups []group ν"
381
- ],
382
- [
383
- "re",
384
- "recentIDs []int ν"
385
- ],
386
- [
387
- "too",
388
- "tooRecent error ν"
389
- ],
390
- [
391
- "groups",
392
- "groupsByProject map[int64][]group ʈ"
393
- ],
394
- [
395
- "pro",
396
- "processProject func(*eventsdb.ProjectGroups) ν"
397
- ],
398
- [
399
- "creat",
400
- "createProjectGroups eventsdb.ProjectGroups ƒ"
401
- ],
402
- [
403
- "deploy",
404
- "deploymentID uint64 ν"
405
- ],
406
- [
407
- "update",
408
- "updatedGroup group ν"
409
- ],
410
- [
411
- "o",
412
- "outdatedThreshold time.Time ν"
413
- ],
414
- [
415
- "create",
416
- "createDeployment deployment ƒ"
417
- ],
418
- [
419
- "pr",
420
- "projectNum int64 ν"
421
- ],
422
- [
423
- "crate",
424
- "createCleanupTask cleanupTask ƒ"
425
- ],
426
- [
427
- "createD",
428
- "createDeploymentPQ deploymentPQ ƒ"
429
- ],
430
- [
431
- "I",
432
- "IsZero bool ƒ"
433
- ],
434
- [
435
- "gro",
436
- "groupHeap []group ʈ"
437
- ],
438
- [
439
- "Project",
440
- "ProjectGroups struct ʈ"
441
- ],
442
- [
443
- "in",
444
- "insertContent ƒ"
445
- ],
446
- [
447
- "i",
448
- "insertProject ƒ"
449
- ],
450
- [
451
- "Pro",
452
- "ProjectGroups struct ʈ"
453
- ],
454
- [
455
- "open",
456
- "openEventDBs mdb *metadatadb.DB, dbs []*eventsdb.DB, fromVersion int, toVersion int, err error ƒ"
457
- ],
458
- [
459
- "span",
460
- "spanner_util"
461
- ],
462
- [
463
- "me",
464
- "metadatadb"
465
- ],
466
- [
467
- "Read",
468
- "ReadWipeoutDir WipeoutDir, error ƒ"
469
- ],
470
- [
471
- "timeout",
472
- "timeoutCtx ν"
473
- ],
474
- [
475
- "time",
476
- "timeoutCancel ν"
477
- ],
478
- [
479
- "events",
480
- "eventsDBPath ν"
481
- ],
482
- [
483
- "Error",
484
- "Errorf ƒ"
485
- ],
486
- [
487
- "se",
488
- "secNotiID int64 ν"
489
- ],
490
- [
491
- "ev",
492
- "eventsDBVersion int64 ν"
493
- ],
494
- [
495
- "f",
496
- "func (*statusMap) func (...) {...} ʂ"
497
- ],
498
- [
499
- "exp",
500
- "expectedDeletion []int ν"
501
- ],
502
- [
503
- "fake",
504
- "fakeSlaves []*fakeResource ν"
505
- ],
506
- [
507
- "expect",
508
- "expectedError error ν"
509
- ],
510
- [
511
- "master",
512
- "masterIndex Ɩ"
513
- ],
514
- [
515
- "projec",
516
- "projectID int64 ν"
517
- ]
518
- ]
519
- },
520
- "buffers":
521
- [
522
- {
523
- "file": "lib/fluent/plugin/out_detect_exceptions.rb",
524
- "settings":
525
- {
526
- "buffer_size": 4449,
527
- "line_ending": "Unix"
528
- }
529
- },
530
- {
531
- "file": "README.rdoc",
532
- "settings":
533
- {
534
- "buffer_size": 5314,
535
- "line_ending": "Unix"
536
- }
537
- },
538
- {
539
- "file": "test/plugin/test_exception_detector.rb",
540
- "settings":
541
- {
542
- "buffer_size": 17507,
543
- "line_ending": "Unix"
544
- }
545
- },
546
- {
547
- "file": "lib/fluent/plugin/exception_detector.rb",
548
- "settings":
549
- {
550
- "buffer_size": 9201,
551
- "line_ending": "Unix"
552
- }
553
- },
554
- {
555
- "file": "test/plugin/bench_exception_detector.rb",
556
- "settings":
557
- {
558
- "buffer_size": 2617,
559
- "line_ending": "Unix"
560
- }
561
- },
562
- {
563
- "file": "fluent-plugin-detect-exceptions.gemspec",
564
- "settings":
565
- {
566
- "buffer_size": 1163,
567
- "line_ending": "Unix"
568
- }
569
- },
570
- {
571
- "file": "test/plugin/test_out_detect_exceptions.rb",
572
- "settings":
573
- {
574
- "buffer_size": 6224,
575
- "line_ending": "Unix"
576
- }
577
- }
578
- ],
579
- "build_system": "Packages/User/blaze.sublime-build",
580
- "build_system_choices":
581
- [
582
- [
583
- [
584
- [
585
- "Packages/GoSublime/GoSublime.sublime-build",
586
- ""
587
- ],
588
- [
589
- "Packages/User/blaze.sublime-build",
590
- ""
591
- ]
592
- ],
593
- [
594
- "Packages/User/blaze.sublime-build",
595
- ""
596
- ]
597
- ]
598
- ],
599
- "build_varint": "",
600
- "command_palette":
601
- {
602
- "height": 75.0,
603
- "last_filter": "",
604
- "selected_items":
605
- [
606
- [
607
- "pac",
608
- "Package Control: Install Package"
609
- ],
610
- [
611
- "ins",
612
- "Package Control: Install Package"
613
- ]
614
- ],
615
- "width": 467.0
616
- },
617
- "console":
618
- {
619
- "height": 139.0,
620
- "history":
621
- [
622
- "import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)"
623
- ]
624
- },
625
- "distraction_free":
626
- {
627
- "menu_visible": true,
628
- "show_minimap": false,
629
- "show_open_files": false,
630
- "show_tabs": false,
631
- "side_bar_visible": false,
632
- "status_bar_visible": false
633
- },
634
- "expanded_folders":
635
- [
636
- "/usr/local/google/home/schickin/Github/fluent-plugin-detect-exceptions"
637
- ],
638
- "file_history":
639
- [
640
- "/usr/local/google/home/schickin/Github/fluent-plugin-detect-exceptions/fluent-plugin-detect-exceptions.gemspec",
641
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/lib/fluent/plugin/out_detect_exceptions.rb",
642
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/test/plugin/test_exception_detector.rb",
643
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/LICENSE",
644
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/test/plugin/bench_exception_detector.rb",
645
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/lib/fluent/plugin/exception_detector.rb",
646
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/README.rdoc",
647
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/test/plugin/test_out_detect_exceptions.rb",
648
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/test/helper.rb",
649
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/Rakefile",
650
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/fluent-plugin-detect-exceptions.gemspec",
651
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/.rubocop.yml",
652
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/User/Preferences.sublime-settings",
653
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/out_detect_exceptions.rb",
654
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/test_out_relabel.rb",
655
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/parser_multiline.rb",
656
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/test_exception_detector.rb",
657
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/exception_detector.rb",
658
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/test_out_detect_exceptions.rb",
659
- "/usr/local/google/home/schickin/Github/fluentd/experiment/fluent.conf",
660
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/bench_exception_detector.rb",
661
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/test_out_null.rb",
662
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/test_out_stdout.rb",
663
- "/usr/local/google/home/schickin/Github/fluentd/test/plugin/data/test_out_detect_exceptions.rb",
664
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/log.rb",
665
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/GoSublime/CHANGELOG.md",
666
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/out_from_docker.rb",
667
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/in_tail.rb",
668
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/command/debug.rb",
669
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/detect_exceptions.rb",
670
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent/plugin/parser_detect_exceptions.rb",
671
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/admin_main.go",
672
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/orphans.go",
673
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/metrics.go",
674
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/queue_test.go",
675
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/queue.go",
676
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/quota.go",
677
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/index/eventsdb_test.go",
678
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/index/eventsdb.go",
679
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/periodic.go",
680
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/quota_test.go",
681
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/gc.go",
682
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/gc_test.go",
683
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/orphans_test.go",
684
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/BUILD",
685
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/admin_main_test.go",
686
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/index/metadatadb.go",
687
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/metricstest.go",
688
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/gcold_test.go.bak",
689
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/index/metadatadb_test.go",
690
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/gcold.go.bak",
691
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/gctask.go",
692
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/gctask_test.go",
693
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/wipeout_test.go",
694
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/spanutil.go",
695
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/service/BUILD",
696
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/wipeout.go",
697
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/spanner_util.go",
698
- "/usr/local/google/home/schickin/Git/acropolis/google3/acropolis.sublime-project",
699
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/Default/Default (Linux).sublime-keymap",
700
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap",
701
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/mpm/BUILD",
702
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/service/wipeout_test.go",
703
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/service/admin_main_test.go",
704
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/service/wipeout.go",
705
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/wipeoutserver.go",
706
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin/wipeoutserver_test.go",
707
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/service/admin_main.go",
708
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/metadatadb.go",
709
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/metadatadb_test.go",
710
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeoutserver.go",
711
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/admin_main.go",
712
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout.go",
713
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout_test.go",
714
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeoutserver_test.go",
715
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/admin_main_test.go",
716
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/config/BUILD",
717
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/BUILD",
718
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/config/error_metadata.sdl",
719
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/User/blaze.sublime-build",
720
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/BUILD",
721
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/eventsdb_test.go",
722
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/eventsdb.go",
723
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/config/error_events.sdl",
724
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout.go.orig",
725
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/project_metadata.proto",
726
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout_test.go.orig",
727
- "/usr/local/google/home/schickin/Git/acropolis/google3/production/borg/cloud-error-reporting/templates/logs_feeder_template.borg",
728
- "/usr/local/google/home/schickin/Git/acropolis/google3/production/borg/cloud-error-reporting/templates/environments.gcl",
729
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/fakemetadatadb.go",
730
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/fakeeventsdb.go",
731
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout_resource.go",
732
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/User/GoSublime.sublime-settings",
733
- "/usr/local/google/home/schickin/Git/acropolis/acropolis.sublime-project",
734
- "/usr/local/google/home/schickin/Git/acropolis/google3/production/borg/crash-reporting/templates/environments.gcl",
735
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/error_group_store_test.cc",
736
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout_server_test.go",
737
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/events_db_test.go",
738
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/events_db.go",
739
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout_server.go",
740
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/error_group_store.go",
741
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/index/error_group_store_test.go",
742
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/User/blazetest.sublime-build",
743
- "/usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes/admin.go",
744
- "/usr/local/google/home/schickin/tmp/test.go",
745
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/GoOracle/README.md",
746
- "/usr/local/google/home/schickin/.config/sublime-text-3/Packages/GoSublime/USAGE.md"
747
- ],
748
- "find":
749
- {
750
- "height": 35.0
751
- },
752
- "find_in_files":
753
- {
754
- "height": 93.0,
755
- "where_history":
756
- [
757
- "/usr/local/google/home/schickin/Gob/fluent-plugin-detect-exceptions/lib",
758
- "/usr/local/google/home/schickin/Github/fluentd/lib/fluent",
759
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin,*.go",
760
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin,*.gode",
761
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin,*.go",
762
- "/usr/local/google/home/schickin/Git/acropolis/google3/cloud/errorreporting/admin",
763
- ""
764
- ]
765
- },
766
- "find_state":
767
- {
768
- "case_sensitive": false,
769
- "find_history":
770
- [
771
- "max_bytes",
772
- "max_lines",
773
- "languages",
774
- "remove_tag_",
775
- "multiline_flush_interval",
776
- "make_logs",
777
- "accumulator_key",
778
- "make_logs",
779
- "feed_lines",
780
- "stream_name",
781
- "ExceptionBuffer",
782
- "PHP_EXC",
783
- "max_lines",
784
- "update",
785
- "@messages",
786
- "buffer_size",
787
- "TraceAccu",
788
- "max_lines",
789
- "message",
790
- "Exceptionde",
791
- "Exception",
792
- "ExceptionDetector",
793
- "ExceptionDetecter",
794
- "ExceptionDete",
795
- "TraceAcc",
796
- "language",
797
- "lang",
798
- "@lang",
799
- "scenario",
800
- "ScenarioSpec",
801
- "message_field",
802
- "puts",
803
- "flush",
804
- "flush_buffers",
805
- "b",
806
- "buffer_start",
807
- "state",
808
- "supported",
809
- "can_emit",
810
- "action",
811
- "restart",
812
- ":end",
813
- ":inside",
814
- ":start",
815
- ":no_exc",
816
- "= ",
817
- "remove_ta",
818
- " =>",
819
- "@buffer",
820
- "buffers",
821
- ")\n",
822
- "all",
823
- "lang",
824
- ":start",
825
- "emits_at_end",
826
- "exc_detected",
827
- "emit",
828
- ":buffer",
829
- ":buffer_and_emit",
830
- ":emit",
831
- ":start",
832
- "matched",
833
- "end_after",
834
- ":emit",
835
- "buffer",
836
- "buffer_and_emit",
837
- "last_start",
838
- "m",
839
- "data",
840
- "msg_field",
841
- "ExceptionBuffer",
842
- "update_state",
843
- "plugin-google-cloud",
844
- "flush_buffer()",
845
- "state",
846
- "\"",
847
- "<<END",
848
- "before_shutdown",
849
- "d.events()",
850
- "tag: OUTPUT_TAG",
851
- "feed",
852
- "(default_tag: 'test')",
853
- "ExceptionD",
854
- "lang",
855
- "chomp",
856
- "bench",
857
- "JS_EXC",
858
- "exception",
859
- "check_exception",
860
- "exception",
861
- "expected_action",
862
- "\\n\"",
863
- "logs",
864
- "expected",
865
- "messages",
866
- "expected",
867
- "JAVA_EXCEPTION",
868
- "@parser",
869
- "parse_mu",
870
- "line",
871
- "$log",
872
- "MemoryBuffer",
873
- "FileBuffer",
874
- "Buffer",
875
- "@state",
876
- "t",
877
- "gcHorizon",
878
- ")\n",
879
- "newGCHorizon",
880
- "readGCHorizon",
881
- " }",
882
- "periodicRuns",
883
- "t",
884
- "lastUpdatedTime",
885
- "groupID",
886
- "lastUpdatedTime",
887
- "-1",
888
- "1",
889
- "ok",
890
- "deleted",
891
- "e",
892
- "projectID",
893
- "groupExists",
894
- "insertContent",
895
- "cron",
896
- "taskId",
897
- "action",
898
- "m"
899
- ],
900
- "highlight": true,
901
- "in_selection": false,
902
- "preserve_case": false,
903
- "regex": false,
904
- "replace_history":
905
- [
906
- ":end_trace",
907
- ":inside_trace",
908
- ":start_trace",
909
- ":no_trace",
910
- ":",
911
- "@accumulator",
912
- ":start_state",
913
- ":inside",
914
- ":end",
915
- ":no_exc",
916
- "end",
917
- "plugin-detect-exceptions",
918
- "flush_buffer",
919
- "'",
920
- "<<END.freeze",
921
- "d.events",
922
- "",
923
- "0",
924
- "logEntry(",
925
- "ReasonGC",
926
- "time",
927
- "target",
928
- "c",
929
- "m",
930
- "OverQuotaReason",
931
- "GCReason",
932
- "metrics.DeletedGroups",
933
- "metrics.deletedGroups",
934
- "deletedGroups",
935
- "spanutil",
936
- "DBs",
937
- "dbs",
938
- "projectNum",
939
- "admin/wipeout",
940
- "false",
941
- "WipeoutStatus_HIDDEN",
942
- "WipeoutStatus_ACCESSIBLE",
943
- "SetHidden hides or unhides",
944
- "SetHidden",
945
- "ScanProjectStatus",
946
- "",
947
- "insertProject",
948
- "CleanupExtraSlaveData",
949
- "ScanWipeoutStatus",
950
- "[]int{}, nil",
951
- "Resource",
952
- "_, err := spanner.RunInTransaction",
953
- "setupContext",
954
- "DB"
955
- ],
956
- "reverse": false,
957
- "show_context": true,
958
- "use_buffer2": true,
959
- "whole_word": false,
960
- "wrap": true
961
- },
962
- "groups":
963
- [
964
- {
965
- "selected": 3,
966
- "sheets":
967
- [
968
- {
969
- "buffer": 0,
970
- "file": "lib/fluent/plugin/out_detect_exceptions.rb",
971
- "semi_transient": false,
972
- "settings":
973
- {
974
- "buffer_size": 4449,
975
- "regions":
976
- {
977
- },
978
- "selection":
979
- [
980
- [
981
- 1392,
982
- 1392
983
- ]
984
- ],
985
- "settings":
986
- {
987
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
988
- "tab_size": 2,
989
- "translate_tabs_to_spaces": true
990
- },
991
- "translation.x": 0.0,
992
- "translation.y": 0.0,
993
- "zoom_level": 1.0
994
- },
995
- "stack_index": 2,
996
- "type": "text"
997
- },
998
- {
999
- "buffer": 1,
1000
- "file": "README.rdoc",
1001
- "semi_transient": false,
1002
- "settings":
1003
- {
1004
- "buffer_size": 5314,
1005
- "regions":
1006
- {
1007
- },
1008
- "selection":
1009
- [
1010
- [
1011
- 0,
1012
- 2872
1013
- ]
1014
- ],
1015
- "settings":
1016
- {
1017
- "syntax": "Packages/Text/Plain text.tmLanguage",
1018
- "tab_size": 2,
1019
- "translate_tabs_to_spaces": true
1020
- },
1021
- "translation.x": 0.0,
1022
- "translation.y": 306.0,
1023
- "zoom_level": 1.0
1024
- },
1025
- "stack_index": 1,
1026
- "type": "text"
1027
- },
1028
- {
1029
- "buffer": 2,
1030
- "file": "test/plugin/test_exception_detector.rb",
1031
- "semi_transient": false,
1032
- "settings":
1033
- {
1034
- "buffer_size": 17507,
1035
- "regions":
1036
- {
1037
- },
1038
- "selection":
1039
- [
1040
- [
1041
- 15694,
1042
- 15694
1043
- ]
1044
- ],
1045
- "settings":
1046
- {
1047
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
1048
- "tab_size": 2,
1049
- "translate_tabs_to_spaces": true
1050
- },
1051
- "translation.x": 0.0,
1052
- "translation.y": 5629.0,
1053
- "zoom_level": 1.0
1054
- },
1055
- "stack_index": 4,
1056
- "type": "text"
1057
- },
1058
- {
1059
- "buffer": 3,
1060
- "file": "lib/fluent/plugin/exception_detector.rb",
1061
- "semi_transient": false,
1062
- "settings":
1063
- {
1064
- "buffer_size": 9201,
1065
- "regions":
1066
- {
1067
- },
1068
- "selection":
1069
- [
1070
- [
1071
- 8363,
1072
- 8363
1073
- ]
1074
- ],
1075
- "settings":
1076
- {
1077
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
1078
- "tab_size": 2,
1079
- "translate_tabs_to_spaces": true
1080
- },
1081
- "translation.x": 0.0,
1082
- "translation.y": 4084.0,
1083
- "zoom_level": 1.0
1084
- },
1085
- "stack_index": 0,
1086
- "type": "text"
1087
- },
1088
- {
1089
- "buffer": 4,
1090
- "file": "test/plugin/bench_exception_detector.rb",
1091
- "semi_transient": false,
1092
- "settings":
1093
- {
1094
- "buffer_size": 2617,
1095
- "regions":
1096
- {
1097
- },
1098
- "selection":
1099
- [
1100
- [
1101
- 0,
1102
- 0
1103
- ]
1104
- ],
1105
- "settings":
1106
- {
1107
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
1108
- "tab_size": 2,
1109
- "translate_tabs_to_spaces": true
1110
- },
1111
- "translation.x": 0.0,
1112
- "translation.y": 122.0,
1113
- "zoom_level": 1.0
1114
- },
1115
- "stack_index": 6,
1116
- "type": "text"
1117
- },
1118
- {
1119
- "buffer": 5,
1120
- "file": "fluent-plugin-detect-exceptions.gemspec",
1121
- "semi_transient": false,
1122
- "settings":
1123
- {
1124
- "buffer_size": 1163,
1125
- "regions":
1126
- {
1127
- },
1128
- "selection":
1129
- [
1130
- [
1131
- 632,
1132
- 632
1133
- ]
1134
- ],
1135
- "settings":
1136
- {
1137
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
1138
- "tab_size": 2,
1139
- "translate_tabs_to_spaces": true
1140
- },
1141
- "translation.x": 0.0,
1142
- "translation.y": 0.0,
1143
- "zoom_level": 1.0
1144
- },
1145
- "stack_index": 5,
1146
- "type": "text"
1147
- },
1148
- {
1149
- "buffer": 6,
1150
- "file": "test/plugin/test_out_detect_exceptions.rb",
1151
- "semi_transient": false,
1152
- "settings":
1153
- {
1154
- "buffer_size": 6224,
1155
- "regions":
1156
- {
1157
- },
1158
- "selection":
1159
- [
1160
- [
1161
- 1881,
1162
- 1881
1163
- ]
1164
- ],
1165
- "settings":
1166
- {
1167
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
1168
- "tab_size": 2,
1169
- "translate_tabs_to_spaces": true
1170
- },
1171
- "translation.x": 0.0,
1172
- "translation.y": 785.0,
1173
- "zoom_level": 1.0
1174
- },
1175
- "stack_index": 3,
1176
- "type": "text"
1177
- }
1178
- ]
1179
- }
1180
- ],
1181
- "incremental_find":
1182
- {
1183
- "height": 25.0
1184
- },
1185
- "input":
1186
- {
1187
- "height": 33.0
1188
- },
1189
- "layout":
1190
- {
1191
- "cells":
1192
- [
1193
- [
1194
- 0,
1195
- 0,
1196
- 1,
1197
- 1
1198
- ]
1199
- ],
1200
- "cols":
1201
- [
1202
- 0.0,
1203
- 1.0
1204
- ],
1205
- "rows":
1206
- [
1207
- 0.0,
1208
- 1.0
1209
- ]
1210
- },
1211
- "menu_visible": true,
1212
- "output.9o:///usr/local/google/home/schickin/Git/acropolis/google3/devtools/search/cloud/crashes":
1213
- {
1214
- "height": 232.0
1215
- },
1216
- "output.GoSublime-main-output":
1217
- {
1218
- "height": 112.0
1219
- },
1220
- "output.MarGo-output":
1221
- {
1222
- "height": 112.0
1223
- },
1224
- "output.exec":
1225
- {
1226
- "height": 289.0
1227
- },
1228
- "output.find_results":
1229
- {
1230
- "height": 0.0
1231
- },
1232
- "pinned_build_system": "Packages/User/blaze.sublime-build",
1233
- "project": "fluent-plugin-detect-exceptions.sublime-project",
1234
- "replace":
1235
- {
1236
- "height": 64.0
1237
- },
1238
- "save_all_on_build": true,
1239
- "select_file":
1240
- {
1241
- "height": 0.0,
1242
- "last_filter": "",
1243
- "selected_items":
1244
- [
1245
- [
1246
- "be",
1247
- "test/plugin/bench_exception_detector.rb"
1248
- ],
1249
- [
1250
- "tes",
1251
- "test/plugin/test_exception_detector.rb"
1252
- ],
1253
- [
1254
- "test_",
1255
- "test/plugin/test_out_detect_exceptions.rb"
1256
- ],
1257
- [
1258
- "exc",
1259
- "lib/fluent/plugin/exception_detector.rb"
1260
- ],
1261
- [
1262
- "out_",
1263
- "lib/fluent/plugin/out_detect_exceptions.rb"
1264
- ],
1265
- [
1266
- "re",
1267
- "README.rdoc"
1268
- ],
1269
- [
1270
- "gems",
1271
- "fluent-plugin-detect-exceptions.gemspec"
1272
- ],
1273
- [
1274
- ".ru",
1275
- ".rubocop.yml"
1276
- ],
1277
- [
1278
- "he",
1279
- "test/helper.rb"
1280
- ],
1281
- [
1282
- "rak",
1283
- "Rakefile"
1284
- ],
1285
- [
1286
- "gemsp",
1287
- "fluent-plugin-detect-exceptions.gemspec"
1288
- ],
1289
- [
1290
- "ben",
1291
- "test/plugin/bench_exception_detector.rb"
1292
- ],
1293
- [
1294
- "flu",
1295
- "experiment/fluent.conf"
1296
- ],
1297
- [
1298
- "flue",
1299
- "experiment/fluent.conf"
1300
- ],
1301
- [
1302
- "test_out_n",
1303
- "test/plugin/test_out_null.rb"
1304
- ],
1305
- [
1306
- "test_out_re",
1307
- "test/plugin/test_out_relabel.rb"
1308
- ],
1309
- [
1310
- "test_out",
1311
- "test/plugin/test_out_stdout.rb"
1312
- ],
1313
- [
1314
- "test_out_de",
1315
- "test/plugin/test_out_detect_exceptions.rb"
1316
- ],
1317
- [
1318
- "det",
1319
- "lib/fluent/plugin/out_detect_exceptions.rb"
1320
- ],
1321
- [
1322
- "exce",
1323
- "lib/fluent/plugin/exception_detector.rb"
1324
- ],
1325
- [
1326
- "in_ta",
1327
- "lib/fluent/plugin/in_tail.rb"
1328
- ],
1329
- [
1330
- "fluent.con",
1331
- "experiment/fluent.conf"
1332
- ],
1333
- [
1334
- "log",
1335
- "lib/fluent/log.rb"
1336
- ],
1337
- [
1338
- "parser_mu",
1339
- "lib/fluent/plugin/parser_multiline.rb"
1340
- ],
1341
- [
1342
- "tai",
1343
- "lib/fluent/plugin/in_tail.rb"
1344
- ],
1345
- [
1346
- "eventsdb",
1347
- "errorreporting/index/eventsdb_test.go"
1348
- ],
1349
- [
1350
- "events",
1351
- "errorreporting/index/eventsdb.go"
1352
- ],
1353
- [
1354
- "metadatad",
1355
- "errorreporting/index/metadatadb.go"
1356
- ],
1357
- [
1358
- "ev",
1359
- "errorreporting/index/eventsdb.go"
1360
- ],
1361
- [
1362
- "even",
1363
- "errorreporting/index/eventsdb.go"
1364
- ],
1365
- [
1366
- "adm",
1367
- "errorreporting/admin/admin_main.go"
1368
- ],
1369
- [
1370
- "eve",
1371
- "errorreporting/index/eventsdb.go"
1372
- ],
1373
- [
1374
- "quota",
1375
- "errorreporting/admin/quota.go"
1376
- ],
1377
- [
1378
- "gc",
1379
- "errorreporting/admin/gc.go"
1380
- ],
1381
- [
1382
- "gc.",
1383
- "errorreporting/admin/gc.go"
1384
- ],
1385
- [
1386
- "",
1387
- "errorreporting/index/eventsdb.go"
1388
- ],
1389
- [
1390
- "qu",
1391
- "errorreporting/admin/quota.go"
1392
- ],
1393
- [
1394
- "admin",
1395
- "errorreporting/admin/admin_main.go"
1396
- ],
1397
- [
1398
- "metadatadb_t",
1399
- "errorreporting/index/metadatadb_test.go"
1400
- ],
1401
- [
1402
- "metadatadb",
1403
- "errorreporting/index/metadatadb.go"
1404
- ],
1405
- [
1406
- "gc.go",
1407
- "errorreporting/admin/gc.go"
1408
- ],
1409
- [
1410
- "spanu",
1411
- "errorreporting/admin/spanutil.go"
1412
- ],
1413
- [
1414
- "metadatadb_",
1415
- "errorreporting/index/metadatadb_test.go"
1416
- ],
1417
- [
1418
- "eventsd",
1419
- "errorreporting/index/eventsdb_test.go"
1420
- ],
1421
- [
1422
- "wip",
1423
- "errorreporting/service/wipeout_test.go"
1424
- ],
1425
- [
1426
- "config/er",
1427
- "search/cloud/config/error_metadata.sdl"
1428
- ],
1429
- [
1430
- "config/b",
1431
- "search/cloud/config/BUILD"
1432
- ],
1433
- [
1434
- "config/bu",
1435
- "search/cloud/config/BUILD"
1436
- ],
1437
- [
1438
- "error_",
1439
- "search/cloud/config/error_metadata.sdl"
1440
- ],
1441
- [
1442
- "error_me",
1443
- "search/cloud/config/error_metadata.sdl"
1444
- ],
1445
- [
1446
- "error_ev",
1447
- "search/cloud/config/error_events.sdl"
1448
- ],
1449
- [
1450
- "metadatadb_te",
1451
- "search/cloud/index/metadatadb_test.go"
1452
- ],
1453
- [
1454
- "wipeoutse",
1455
- "search/cloud/crashes/wipeoutserver_test.go"
1456
- ],
1457
- [
1458
- "proj",
1459
- "search/cloud/index/project_metadata.proto"
1460
- ],
1461
- [
1462
- "me",
1463
- "search/cloud/index/metadatadb_test.go"
1464
- ],
1465
- [
1466
- "metadatago",
1467
- "search/cloud/index/metadatadb.go"
1468
- ],
1469
- [
1470
- "wipesergo",
1471
- "search/cloud/crashes/wipeoutserver.go"
1472
- ],
1473
- [
1474
- "fakeme",
1475
- "search/cloud/index/fakemetadatadb.go"
1476
- ],
1477
- [
1478
- "fak",
1479
- "search/cloud/index/fakeeventsdb.go"
1480
- ],
1481
- [
1482
- "metadata",
1483
- "search/cloud/index/metadatadb.go"
1484
- ],
1485
- [
1486
- "logs_febor",
1487
- "borg/cloud-error-reporting/templates/logs_feeder_template.borg"
1488
- ],
1489
- [
1490
- "envi",
1491
- "borg/cloud-error-reporting/templates/environments.gcl"
1492
- ],
1493
- [
1494
- "admin_",
1495
- "cloud/crashes/admin_main.go"
1496
- ],
1497
- [
1498
- "w_s",
1499
- "~/Git/acropolis/google3/devtools/search/cloud/crashes/wipeout_server.go"
1500
- ]
1501
- ],
1502
- "width": 0.0
1503
- },
1504
- "select_project":
1505
- {
1506
- "height": 0.0,
1507
- "last_filter": "",
1508
- "selected_items":
1509
- [
1510
- ],
1511
- "width": 0.0
1512
- },
1513
- "select_symbol":
1514
- {
1515
- "height": 392.0,
1516
- "last_filter": "",
1517
- "selected_items":
1518
- [
1519
- [
1520
- "createev",
1521
- "createEventsData"
1522
- ],
1523
- [
1524
- "DeleteProj",
1525
- "DeleteProject"
1526
- ],
1527
- [
1528
- "deleteE",
1529
- "deleteExtraData"
1530
- ],
1531
- [
1532
- "Cleanup",
1533
- "CleanupExtraSlaveData"
1534
- ],
1535
- [
1536
- "cleanup",
1537
- "CleanupExtraSlaveData"
1538
- ],
1539
- [
1540
- "ScanProje",
1541
- "ScanProjectStatus"
1542
- ],
1543
- [
1544
- "scanprojec",
1545
- "ScanProjectStatus"
1546
- ],
1547
- [
1548
- "scanproject",
1549
- "ScanProjectStatus"
1550
- ],
1551
- [
1552
- "scanproje",
1553
- "ScanProjectStatus"
1554
- ],
1555
- [
1556
- "scanP",
1557
- "ScanProjectStatus"
1558
- ],
1559
- [
1560
- "SEtHi",
1561
- "SetHidden"
1562
- ],
1563
- [
1564
- "SetHi",
1565
- "TestSetHidden"
1566
- ],
1567
- [
1568
- "ScanProjec",
1569
- "ScanProjectMetadata"
1570
- ],
1571
- [
1572
- "NewM",
1573
- "NewManager"
1574
- ],
1575
- [
1576
- "",
1577
- "WipeoutServer"
1578
- ]
1579
- ],
1580
- "width": 392.0
1581
- },
1582
- "selected_group": 0,
1583
- "settings":
1584
- {
1585
- },
1586
- "show_minimap": true,
1587
- "show_open_files": true,
1588
- "show_tabs": true,
1589
- "side_bar_visible": true,
1590
- "side_bar_width": 313.0,
1591
- "status_bar_visible": true,
1592
- "template_settings":
1593
- {
1594
- }
1595
- }