fluent-plugin-detect-exceptions 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +10 -10
- data/README.rdoc +31 -7
- data/fluent-plugin-detect-exceptions.gemspec +1 -1
- data/fluent-plugin-detect-exceptions.sublime-project +8 -0
- data/fluent-plugin-detect-exceptions.sublime-workspace +1595 -0
- data/lib/fluent/plugin/out_detect_exceptions.rb +16 -12
- data/measure_memory.sh +28 -0
- data/test/plugin/test_out_detect_exceptions.rb +33 -4
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76e5328df6e14f8c6a9798ce17ff5e344a462210
|
4
|
+
data.tar.gz: 3a3ddd59d3d39151196c0b1a6465227c2f857580
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a46b5511289748999a01c9e78621973fcc07cae3416ca51c56dd51371a4ff804a12d4788cf576de8c0bf6fb100e6121ae111418fb5af0328248503557a5c2418
|
7
|
+
data.tar.gz: 3bdd74bad15d0479046228897f0a289acbdb18209ddf7386739cceb75c3ac6d8c440ae702fe7289d5b222b664ac675b93589aa93f4b84ec6dc5fdb6d4bf4a1be
|
data/Gemfile.lock
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fluent-plugin-detect-exceptions (0.0.
|
4
|
+
fluent-plugin-detect-exceptions (0.0.4)
|
5
5
|
fluentd (~> 0.10, <= 0.13)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
10
|
ast (2.3.0)
|
11
|
-
cool.io (1.4.
|
12
|
-
fluentd (0.12.
|
11
|
+
cool.io (1.4.4)
|
12
|
+
fluentd (0.12.26)
|
13
13
|
cool.io (>= 1.2.2, < 2.0.0)
|
14
14
|
http_parser.rb (>= 0.5.1, < 0.7.0)
|
15
15
|
json (>= 1.4.3)
|
@@ -22,9 +22,9 @@ GEM
|
|
22
22
|
http_parser.rb (0.6.0)
|
23
23
|
json (2.0.2)
|
24
24
|
msgpack (0.5.12)
|
25
|
-
parser (2.3.
|
25
|
+
parser (2.3.1.2)
|
26
26
|
ast (~> 2.2)
|
27
|
-
power_assert (0.
|
27
|
+
power_assert (0.3.0)
|
28
28
|
powerpack (0.1.1)
|
29
29
|
rainbow (2.1.0)
|
30
30
|
rake (10.5.0)
|
@@ -37,15 +37,15 @@ GEM
|
|
37
37
|
ruby-progressbar (1.8.1)
|
38
38
|
sigdump (0.2.4)
|
39
39
|
string-scrub (0.0.5)
|
40
|
-
test-unit (3.2.
|
40
|
+
test-unit (3.2.1)
|
41
41
|
power_assert
|
42
42
|
thread_safe (0.3.5)
|
43
43
|
tzinfo (1.2.2)
|
44
44
|
thread_safe (~> 0.1)
|
45
|
-
tzinfo-data (1.2016.
|
45
|
+
tzinfo-data (1.2016.6)
|
46
46
|
tzinfo (>= 1.0.0)
|
47
|
-
unicode-display_width (1.1.
|
48
|
-
yajl-ruby (1.
|
47
|
+
unicode-display_width (1.1.0)
|
48
|
+
yajl-ruby (1.2.1)
|
49
49
|
|
50
50
|
PLATFORMS
|
51
51
|
ruby
|
@@ -57,4 +57,4 @@ DEPENDENCIES
|
|
57
57
|
test-unit (~> 3.0)
|
58
58
|
|
59
59
|
BUNDLED WITH
|
60
|
-
1.
|
60
|
+
1.12.5
|
data/README.rdoc
CHANGED
@@ -44,13 +44,16 @@ The plugin supports the following parameters:
|
|
44
44
|
|
45
45
|
[message] Name of the field in the JSON record that contains the
|
46
46
|
single-line log messages that shall be scanned for exceptions.
|
47
|
-
|
47
|
+
If this is set to '', the plugin will try 'message' and 'log',
|
48
|
+
in that order.
|
49
|
+
This parameter is only applicable to structured (JSON) log streams.
|
50
|
+
Default: ''.
|
48
51
|
|
49
52
|
[remove_tag_prefix] The prefix to remove from the input tag when outputting
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
53
|
+
a record. A prefix has to be a complete tag part.
|
54
|
+
Example: If remove_tag_prefix is set to 'foo', the input
|
55
|
+
tag foo.bar.baz is transformed to bar.baz and the input tag
|
56
|
+
'foofoo.bar' is not modified. Default: empty string.
|
54
57
|
|
55
58
|
[languages] A list of language for which exception stack traces shall be
|
56
59
|
detected. The values in the list can be separated by commas or
|
@@ -64,13 +67,34 @@ The plugin supports the following parameters:
|
|
64
67
|
are not flushed.
|
65
68
|
|
66
69
|
[max_lines] Maximum number of lines in a detected exception stack trace.
|
67
|
-
If this maximum number is exceeded, the
|
68
|
-
|
70
|
+
If this maximum number is exceeded, the exception stack trace
|
71
|
+
that has been detected so far will be output as a single
|
69
72
|
log message and the detection will start from scratch.
|
70
73
|
This is intended as a safeguard against buffering very large
|
71
74
|
amounts of data before outputting them to the log stream.
|
75
|
+
Zero means no limit.
|
72
76
|
Default: 1000.
|
73
77
|
|
78
|
+
[max_bytes] Maximum number of bytes in a detected exception stack trace.
|
79
|
+
If this maximum number is exceeded, the exception stack trace
|
80
|
+
that has been detected so far will be output as a single
|
81
|
+
log message and the detection will start from scratch.
|
82
|
+
This is intended as a safeguard against buffering very large
|
83
|
+
amounts of data before outputting them to the log stream.
|
84
|
+
Zero means no limit.
|
85
|
+
Default: 0.
|
86
|
+
|
87
|
+
[stream] Name of the field in the JSON record that contains the name of a
|
88
|
+
logical log stream within the "real" log stream.
|
89
|
+
The exception detection is handled separately for each logical
|
90
|
+
log stream, i.e., exceptions will be detected even if the messages
|
91
|
+
for the logical log streams are interleaved in the "real" log stream.
|
92
|
+
Consequently, only records in the same logical stream will be
|
93
|
+
combined.
|
94
|
+
This parameter is ignored if set to ''.
|
95
|
+
This parameter is only applicable to structured (JSON) log streams.
|
96
|
+
Default: ''.
|
97
|
+
|
74
98
|
Example configuration:
|
75
99
|
|
76
100
|
<match **>
|
@@ -11,7 +11,7 @@ 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.
|
14
|
+
gem.version = '0.0.4'
|
15
15
|
gem.authors = ['Thomas Schickinger']
|
16
16
|
gem.email = ['schickin@google.com']
|
17
17
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
@@ -0,0 +1,1595 @@
|
|
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": 4446,
|
527
|
+
"line_ending": "Unix"
|
528
|
+
}
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"file": "README.rdoc",
|
532
|
+
"settings":
|
533
|
+
{
|
534
|
+
"buffer_size": 5278,
|
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
|
+
"make_logs",
|
772
|
+
"accumulator_key",
|
773
|
+
"make_logs",
|
774
|
+
"feed_lines",
|
775
|
+
"stream_name",
|
776
|
+
"ExceptionBuffer",
|
777
|
+
"PHP_EXC",
|
778
|
+
"max_lines",
|
779
|
+
"update",
|
780
|
+
"@messages",
|
781
|
+
"buffer_size",
|
782
|
+
"TraceAccu",
|
783
|
+
"max_lines",
|
784
|
+
"message",
|
785
|
+
"Exceptionde",
|
786
|
+
"Exception",
|
787
|
+
"ExceptionDetector",
|
788
|
+
"ExceptionDetecter",
|
789
|
+
"ExceptionDete",
|
790
|
+
"TraceAcc",
|
791
|
+
"language",
|
792
|
+
"lang",
|
793
|
+
"@lang",
|
794
|
+
"scenario",
|
795
|
+
"ScenarioSpec",
|
796
|
+
"message_field",
|
797
|
+
"puts",
|
798
|
+
"flush",
|
799
|
+
"flush_buffers",
|
800
|
+
"b",
|
801
|
+
"buffer_start",
|
802
|
+
"state",
|
803
|
+
"supported",
|
804
|
+
"can_emit",
|
805
|
+
"action",
|
806
|
+
"restart",
|
807
|
+
":end",
|
808
|
+
":inside",
|
809
|
+
":start",
|
810
|
+
":no_exc",
|
811
|
+
"= ",
|
812
|
+
"remove_ta",
|
813
|
+
" =>",
|
814
|
+
"@buffer",
|
815
|
+
"buffers",
|
816
|
+
")\n",
|
817
|
+
"all",
|
818
|
+
"lang",
|
819
|
+
":start",
|
820
|
+
"emits_at_end",
|
821
|
+
"exc_detected",
|
822
|
+
"emit",
|
823
|
+
":buffer",
|
824
|
+
":buffer_and_emit",
|
825
|
+
":emit",
|
826
|
+
":start",
|
827
|
+
"matched",
|
828
|
+
"end_after",
|
829
|
+
":emit",
|
830
|
+
"buffer",
|
831
|
+
"buffer_and_emit",
|
832
|
+
"last_start",
|
833
|
+
"m",
|
834
|
+
"data",
|
835
|
+
"msg_field",
|
836
|
+
"ExceptionBuffer",
|
837
|
+
"update_state",
|
838
|
+
"plugin-google-cloud",
|
839
|
+
"flush_buffer()",
|
840
|
+
"state",
|
841
|
+
"\"",
|
842
|
+
"<<END",
|
843
|
+
"before_shutdown",
|
844
|
+
"d.events()",
|
845
|
+
"tag: OUTPUT_TAG",
|
846
|
+
"feed",
|
847
|
+
"(default_tag: 'test')",
|
848
|
+
"ExceptionD",
|
849
|
+
"lang",
|
850
|
+
"chomp",
|
851
|
+
"bench",
|
852
|
+
"JS_EXC",
|
853
|
+
"exception",
|
854
|
+
"check_exception",
|
855
|
+
"exception",
|
856
|
+
"expected_action",
|
857
|
+
"\\n\"",
|
858
|
+
"logs",
|
859
|
+
"expected",
|
860
|
+
"messages",
|
861
|
+
"expected",
|
862
|
+
"JAVA_EXCEPTION",
|
863
|
+
"@parser",
|
864
|
+
"parse_mu",
|
865
|
+
"line",
|
866
|
+
"$log",
|
867
|
+
"MemoryBuffer",
|
868
|
+
"FileBuffer",
|
869
|
+
"Buffer",
|
870
|
+
"@state",
|
871
|
+
"t",
|
872
|
+
"gcHorizon",
|
873
|
+
")\n",
|
874
|
+
"newGCHorizon",
|
875
|
+
"readGCHorizon",
|
876
|
+
" }",
|
877
|
+
"periodicRuns",
|
878
|
+
"t",
|
879
|
+
"lastUpdatedTime",
|
880
|
+
"groupID",
|
881
|
+
"lastUpdatedTime",
|
882
|
+
"-1",
|
883
|
+
"1",
|
884
|
+
"ok",
|
885
|
+
"deleted",
|
886
|
+
"e",
|
887
|
+
"projectID",
|
888
|
+
"groupExists",
|
889
|
+
"insertContent",
|
890
|
+
"cron",
|
891
|
+
"taskId",
|
892
|
+
"action",
|
893
|
+
"m",
|
894
|
+
"newMonitor",
|
895
|
+
"monitor",
|
896
|
+
"ready",
|
897
|
+
"waiting",
|
898
|
+
"action"
|
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": 6,
|
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": 4446,
|
975
|
+
"regions":
|
976
|
+
{
|
977
|
+
},
|
978
|
+
"selection":
|
979
|
+
[
|
980
|
+
[
|
981
|
+
1883,
|
982
|
+
1883
|
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": 1,
|
996
|
+
"type": "text"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"buffer": 1,
|
1000
|
+
"file": "README.rdoc",
|
1001
|
+
"semi_transient": false,
|
1002
|
+
"settings":
|
1003
|
+
{
|
1004
|
+
"buffer_size": 5278,
|
1005
|
+
"regions":
|
1006
|
+
{
|
1007
|
+
},
|
1008
|
+
"selection":
|
1009
|
+
[
|
1010
|
+
[
|
1011
|
+
4794,
|
1012
|
+
4794
|
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": 1258.0,
|
1023
|
+
"zoom_level": 1.0
|
1024
|
+
},
|
1025
|
+
"stack_index": 2,
|
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
|
+
2997,
|
1072
|
+
2997
|
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": 1207.0,
|
1083
|
+
"zoom_level": 1.0
|
1084
|
+
},
|
1085
|
+
"stack_index": 3,
|
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
|
+
1747,
|
1162
|
+
1747
|
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": 0,
|
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
|
+
}
|