forked from mozilla-services/socorro
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprocessor.ini-dist
552 lines (379 loc) · 26.1 KB
/
processor.ini-dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
# the fully qualified module or class of the application
#application=socorro.processor.processor_app.ProcessorApp
[resource]
#+include ./common_resource.ini
[[fs]]
#+include ./common_fs.ini
# the default dump field
#dump_field=upload_file_minidump
# the suffix used to identify a dump file
#dump_file_suffix=.dump
# a path to a file system
#fs_root=./crashes
# the suffix used to identify a json file
#json_file_suffix=.json
# the suffix used to identify a gzipped json file
#jsonz_file_suffix=.jsonz
# the directory base name to use for the named radix tree storage
#name_branch_base=name
# umask to use for new files
#umask=18
[[logging]]
#+include ./common_logging.ini
# logging level for the logging to stderr (10 - DEBUG, 20 - INFO, 30 - WARNING, 40 - ERROR, 50 - CRITICAL)
#stderr_error_logging_level=10
# python logging system format for logging to stderr
#stderr_line_format_string={asctime} {levelname} - {threadName} - {message}
# logging level for the log file (10 - DEBUG, 20 - INFO, 30 - WARNING, 40 - ERROR, 50 - CRITICAL)
#syslog_error_logging_level=40
# syslog facility string ("user", "local0", etc)
#syslog_facility_string=user
# syslog hostname
#syslog_host=localhost
# python logging system format for syslog entries
#syslog_line_format_string=processor (pid {process}): {asctime} {levelname} - {threadName} - {message}
# syslog port
#syslog_port=514
[[postgresql]]
#+include ./common_postgresql.ini
# the class of the database
#database_class=socorro.external.postgresql.connection_context.ConnectionContext
# the hostname of the database
#database_hostname=localhost
# the name of the database
#database_name=breakpad
# the port for the database
#database_port=5432
# a class that will manage transactions
#transaction_executor_class=socorro.database.transaction_executor.TransactionExecutorWithInfiniteBackoff
[[rabbitmq]]
#+include ./common_rabbitmq.ini
# delays in seconds between retries
#backoff_delays=10, 30, 60, 120, 300
# toggle for using or ignoring the throttling flag
#filter_on_legacy_processing=False
# the hostname of the RabbitMQ server
#host=localhost
# the port for the RabbitMQ server
#port=5672
# the name of priority crash queue name within RabbitMQ
#priority_queue_name=socorro.priority
# the class responsible for connecting to RabbitMQ
#rabbitmq_class=socorro.external.rabbitmq.connection_context.ConnectionContextPooled
# a classname for the type of wrapper for RabbitMQ connections
#rabbitmq_connection_wrapper_class=socorro.external.rabbitmq.connection_context.Connection
# the name of reprocessing crash queue name within RabbitMQ
#reprocessing_queue_name=socorro.reprocessing
# the name of the queue to recieve crashes
#routing_key=socorro.reprocessing
# the name of standard crash queue name within RabbitMQ
#standard_queue_name=socorro.normal
# a class that will manage transactions
#transaction_executor_class=socorro.database.transaction_executor.TransactionExecutorWithInfiniteBackoff
# the name of the RabbitMQ virtual host
#virtual_host=/
# seconds between log during retries
#wait_log_interval=10
[[redactor]]
#+include ./common_redactor.ini
# a list of keys not allowed in a redacted processed crash
#forbidden_keys=url, email, user_id, exploitability,json_dump.sensitive,upload_file_minidump_flash1.json_dump.sensitive,upload_file_minidump_flash2.json_dump.sensitive,upload_file_minidump_browser.json_dump.sensitive,memory_info
# the name of the class that implements a 'redact' method
#redactor_class=socorro.external.crashstorage_base.Redactor
[[statsd]]
#+include ./common_statsd.ini
# a comma delimeted list of counters
#active_counters_list=
# a string to be used as the prefix for statsd names
#prefix=
# the hostname of statsd
#statsd_host=
# the port number for statsd
#statsd_port=8125
[secrets]
#+include ./common_secrets.ini
[[postgresql]]
#+include ./common_postgresql.ini
# the user's database password
#database_password=aPassword
# the name of the user within the database
#database_username=breakpad_rw
[[rabbitmq]]
#+include ./common_rabbitmq.ini
# the user's RabbitMQ password
#rabbitmq_password=guest
# the name of the user within the RabbitMQ instance
#rabbitmq_user=guest
[destination]
# the destination storage class
crashstorage_class=socorro.external.crashstorage_base.PolyCrashStorage
# a list of keys not allowed in a redacted processed crash
# see "resource.redactor.forbidden_keys" for the default or override it here
#forbidden_keys=url, email, user_id, exploitability,json_dump.sensitive,upload_file_minidump_flash1.json_dump.sensitive,upload_file_minidump_flash2.json_dump.sensitive,upload_file_minidump_browser.json_dump.sensitive,memory_info
# the name of the class that implements a 'redact' method
# see "resource.redactor.redactor_class" for the default or override it here
#redactor_class=socorro.external.crashstorage_base.Redactor
# a comma delimited list of storage classes
storage_classes='socorro.external.fs.crashstorage.FSPermanentStorage, socorro.external.postgresql.crashstorage.PostgreSQLCrashStorage'
[[storage0]]
# None
crashstorage_class=socorro.external.fs.crashstorage.FSPermanentStorage
# the default dump field
# see "resource.fs.dump_field" for the default or override it here
#dump_field=upload_file_minidump
# the suffix used to identify a dump file
# see "resource.fs.dump_file_suffix" for the default or override it here
#dump_file_suffix=.dump
# a list of keys not allowed in a redacted processed crash
# see "resource.redactor.forbidden_keys" for the default or override it here
#forbidden_keys=url, email, user_id, exploitability
# a path to a file system
# see "resource.fs.fs_root" for the default or override it here
#fs_root=./crashes
# the suffix used to identify a json file
# see "resource.fs.json_file_suffix" for the default or override it here
#json_file_suffix=.json
# the suffix used to identify a gzipped json file
# see "resource.fs.jsonz_file_suffix" for the default or override it here
#jsonz_file_suffix=.jsonz
# the directory base name to use for the named radix tree storage
# see "resource.fs.name_branch_base" for the default or override it here
#name_branch_base=name
# the name of the class that implements a 'redact' method
# see "resource.redactor.redactor_class" for the default or override it here
#redactor_class=socorro.external.crashstorage_base.Redactor
# umask to use for new files
# see "resource.fs.umask" for the default or override it here
#umask=18
[[storage1]]
# None
crashstorage_class=socorro.external.postgresql.crashstorage.PostgreSQLCrashStorage
# the class responsible for connecting to Postgres
# see "resource.postgresql.database_class" for the default or override it here
#database_class=socorro.external.postgresql.connection_context.ConnectionContext
# the hostname of the database
# see "resource.postgresql.database_hostname" for the default or override it here
#database_hostname=localhost
# the name of the database
# see "resource.postgresql.database_name" for the default or override it here
#database_name=breakpad
# the user's database password
# see "secrets.postgresql.database_password" for the default or override it here
#database_password=aPassword
# the port for the database
# see "resource.postgresql.database_port" for the default or override it here
#database_port=5432
# the name of the user within the database
# see "secrets.postgresql.database_username" for the default or override it here
#database_username=breakpad_rw
# a list of keys not allowed in a redacted processed crash
# see "resource.redactor.forbidden_keys" for the default or override it here
#forbidden_keys=url, email, user_id, exploitability,json_dump.sensitive,upload_file_minidump_flash1.json_dump.sensitive,upload_file_minidump_flash2.json_dump.sensitive,upload_file_minidump_browser.json_dump.sensitive,memory_info
# the name of the class that implements a 'redact' method
# see "resource.redactor.redactor_class" for the default or override it here
#redactor_class=socorro.external.crashstorage_base.Redactor
# a class that will manage transactions
# see "resource.postgresql.transaction_executor_class" for the default or override it here
#transaction_executor_class=socorro.database.transaction_executor.TransactionExecutor
[logging]
# logging level for the logging to stderr (10 - DEBUG, 20 - INFO, 30 - WARNING, 40 - ERROR, 50 - CRITICAL)
# see "resource.logging.stderr_error_logging_level" for the default or override it here
#stderr_error_logging_level=10
# python logging system format for logging to stderr
# see "resource.logging.stderr_line_format_string" for the default or override it here
#stderr_line_format_string={asctime} {levelname} - {threadName} - {message}
# logging level for the log file (10 - DEBUG, 20 - INFO, 30 - WARNING, 40 - ERROR, 50 - CRITICAL)
# see "resource.logging.syslog_error_logging_level" for the default or override it here
#syslog_error_logging_level=40
# syslog facility string ("user", "local0", etc)
# see "resource.logging.syslog_facility_string" for the default or override it here
#syslog_facility_string=user
# syslog hostname
# see "resource.logging.syslog_host" for the default or override it here
#syslog_host=localhost
# python logging system format for syslog entries
# see "resource.logging.syslog_line_format_string" for the default or override it here
#syslog_line_format_string=processor (pid {process}): {asctime} {levelname} - {threadName} - {message}
# syslog port
# see "resource.logging.syslog_port" for the default or override it here
#syslog_port=514
[new_crash_source]
# delays in seconds between retries
# see "resource.rabbitmq.backoff_delays" for the default or override it here
#backoff_delays=10, 30, 60, 120, 300, 300, 300, 300, 300, 300
# the source storage class
#crashstorage_class=socorro.external.rabbitmq.crashstorage.RabbitMQCrashStorage
# toggle for using or ignoring the throttling flag
# see "resource.rabbitmq.filter_on_legacy_processing" for the default or override it here
#filter_on_legacy_processing=False
# a list of keys not allowed in a redacted processed crash
# see "resource.redactor.forbidden_keys" for the default or override it here
#forbidden_keys=url, email, user_id, exploitability,json_dump.sensitive,upload_file_minidump_flash1.json_dump.sensitive,upload_file_minidump_flash2.json_dump.sensitive,upload_file_minidump_browser.json_dump.sensitive,memory_info
# the hostname of the RabbitMQ server
# see "resource.rabbitmq.host" for the default or override it here
#host=localhost
# an iterable that will stream crash_ids needing processing
#new_crash_source_class=socorro.external.rabbitmq.rmq_new_crash_source.RMQNewCrashSource
# the port for the RabbitMQ server
# see "resource.rabbitmq.port" for the default or override it here
#port=5672
# the name of priority crash queue name within RabbitMQ
# see "resource.rabbitmq.priority_queue_name" for the default or override it here
#priority_queue_name=socorro.priority
# the class responsible for connecting to RabbitMQ
# see "resource.rabbitmq.rabbitmq_class" for the default or override it here
#rabbitmq_class=socorro.external.rabbitmq.connection_context.ConnectionContextPooled
# a classname for the type of wrapper for RabbitMQ connections
# see "resource.rabbitmq.rabbitmq_connection_wrapper_class" for the default or override it here
#rabbitmq_connection_wrapper_class=socorro.external.rabbitmq.connection_context.Connection
# the user's RabbitMQ password
# see "secrets.rabbitmq.rabbitmq_password" for the default or override it here
#rabbitmq_password=guest
# the name of the user within the RabbitMQ instance
# see "secrets.rabbitmq.rabbitmq_user" for the default or override it here
#rabbitmq_user=guest
# the name of the class that implements a 'redact' method
# see "resource.redactor.redactor_class" for the default or override it here
#redactor_class=socorro.external.crashstorage_base.Redactor
# the name of reprocessing crash queue name within RabbitMQ
# see "resource.rabbitmq.reprocessing_queue_name" for the default or override it here
#reprocessing_queue_name=socorro.reprocessing
# the name of the queue to recieve crashes
# see "resource.rabbitmq.routing_key" for the default or override it here
#routing_key=socorro.reprocessing
# the name of standard crash queue name within RabbitMQ
# see "resource.rabbitmq.standard_queue_name" for the default or override it here
#standard_queue_name=socorro.normal
# a class that will manage transactions
# see "resource.rabbitmq.transaction_executor_class" for the default or override it here
#transaction_executor_class=socorro.database.transaction_executor.TransactionExecutorWithInfiniteBackoff
# the name of the RabbitMQ virtual host
# see "resource.rabbitmq.virtual_host" for the default or override it here
#virtual_host=/
# seconds between log during retries
# see "resource.rabbitmq.wait_log_interval" for the default or override it here
#wait_log_interval=1
[processor]
# boolean indictating if information about add-ons should be collected
#collect_addon=True
# boolean indictating if information about process type should be collected
#collect_crash_process=True
# the number of frames to keep in the raw dump for the crashing thread
#crashing_thread_frame_threshold=100
# the number of frames to keep in the raw dump at the tail of the frame list
#crashing_thread_tail_frame_threshold=10
# the class of the database
# see "resource.postgresql.database_class" for the default or override it here
#database_class=socorro.external.postgresql.connection_context.ConnectionContext
# the hostname of the database
# see "resource.postgresql.database_hostname" for the default or override it here
#database_hostname=localhost
# the name of the database
# see "resource.postgresql.database_name" for the default or override it here
#database_name=breakpad
# the user's database password
# see "secrets.postgresql.database_password" for the default or override it here
#database_password=aPassword
# the port for the database
# see "resource.postgresql.database_port" for the default or override it here
#database_port=5432
# the name of the user within the database
# see "secrets.postgresql.database_username" for the default or override it here
#database_username=breakpad_rw
# the default name of a dump
#dump_field=upload_file_minidump
# the version of Firefox that is considered to be old enough to warrant a warning to the user
#firefox_out_of_date_version=17
# A subset of the known "debug identifiers" for flash versions, associated to the version
#known_flash_identifiers={"4EDBBD7016E8871A461CCABB7F1B16120": "10.1", "937DDCC422411E58EF6AD13710B0EF190": "10.0.23", "890664D4EF567481ACFD2A21E9D2A2420": "9.0.151.0", "7224164B5918E29AF52365AF3EAF7A500": "10.1.51.66", "0CFAF1611A3C4AA382D26424D609F00B0": "9.0.47.0", "1C8715E734B31A2EACE3B0CFC1CF21EB0": "9.0.159.0", "27CC04C9588E482A948FB5A87E22687B0": "9.0.159.0", "0B03252A5C303973E320CAA6127441F80": "9.0.260.0", "266780DB53C4AAC830AFF69306C5C0300": "10.0.42.34", "77CB5AC61C456B965D0B41361B3F6CEA0": "10.0.22.87", "986682965B43DFA62E0A0DFFD7B7417F0": "10.0.23", "C5B5651B46B7612E118339D19A6E66360": "9.0.45.0", "03D99C42D7475B46D77E64D4D5386D6D0": "9.0.115.0", "83CF4DC03621B778E931FC713889E8F10": "9.0.16.0", "D1AAAB5D417861E6A5B835B01D3039550": "10.0.45.2", "51C00B72112812428EFA8F4A37F683A80": "9.0.124.0", "974873A0A6AD482F8F17A7C55F0A33390": "9.0.262.0", "F43004FFC4944F26AF228334F2CDA80B0": "9.0.151.0", "AE71D92D2812430FA05238C52F7E20310": "9.0.246.0", "BF6B3B51ACB255B38FCD8AA5AEB9F1030": "9.0.28.0", "C4D637F2C8494896FBD4B3EF0319EBAC0": "10.0.42.34", "9FA57B6DC7FF4CFE9A518442325E91CB0": "9.0.115.0", "025105C956638D665850591768FB743D0": "10.0.32.18", "776944FD51654CA2B59AB26A33D8F9B30": "10.0.12.36", "6761F4FA49B5F55833D66CAC0BBF8CB80": "9.0.246.0", "860692A215F054B7B9474B410ABEB5300": "10.0.22.87", "8355DCF076564B6784C517FD0ECCB2F20": "9.0.124.0", "C6CDEFCDB58EFE5C6ECEF0C463C979F80": "10.1.51.66", "B19EE2363941C9582E040B99BB5E237A0": "10.0.32.18", "38AEB67F6A0B43C6A341D7936603E84A0": "10.0.12.36", "B482D3DFD57C23B5754966F42D4CBCB60": "9.0.262.0", "0F3262B5501A34B963E5DF3F0386C9910": "9.0.47.0", "EBD27FDBA9D9B3880550B2446902EC4A0": "10.0.45.2"}
# the full pathname of the extern program stackwalker (quote path with embedded spaces)
#minidump_stackwalk_pathname=/data/socorro/stackwalk/bin/stackwalker
# the class that transforms raw crashes into processed crashes
#processor_class=socorro.processor.hybrid_processor.HybridCrashProcessor
# comma or space separated list of symbol files for minidump_stackwalk (quote paths with embedded spaces)
#processor_symbols_pathname_list="/mnt/socorro/symbols/symbols_ffx" "/mnt/socorro/symbols/symbols_sea" "/mnt/socorro/symbols/symbols_tbrd" "/mnt/socorro/symbols/symbols_sbrd" "/mnt/socorro/symbols/symbols_os"
# the template for the command to invoke stackwalker
#stackwalk_command_line=timeout -s KILL 30 $minidump_stackwalk_pathname --raw-json $rawfilePathname --pipe $dumpfilePathname $processor_symbols_pathname_list 2>/dev/null
# the path where the symbol cache is found (quote path with embedded spaces)
#symbol_cache_path=/mnt/socorro/symbols
# a path where temporary files may be written
#temporary_file_system_storage_path=/tmp
# a class that will manage transactions
# see "resource.postgresql.transaction_executor_class" for the default or override it here
#transaction_executor_class=socorro.database.transaction_executor.TransactionExecutorWithInfiniteBackoff
# seconds between log during retries
# see "resource.postgresql.wait_log_interval" for the default or override it here
#wait_log_interval=10
# boolean indictating if we are using the old monitor_app.py
#with_old_monitor=False
[[c_signature]]
# the class that can generate a C signature
#c_signature_tool_class=socorro.processor.signature_utilities.CSignatureTool
# a regular expression matching frame signatures that should be ignored when generating an overall signature
#irrelevant_signature_re=@0x[0-9a-fA-F]{2,}|@0x[1-9a-fA-F]|ashmem|app_process@0x.*|core\.odex@0x.*|_CxxThrowException|dalvik-heap|dalvik-jit-code-cache|dalvik-LinearAlloc|dalvik-mark-stack|data@app@org\.mozilla\.f.*-\d\.apk@classes\.dex@0x.*|framework\.odex@0x.*|google_breakpad::ExceptionHandler::HandleInvalidParameter.*|KiFastSystemCallRet|libandroid_runtime\.so@0x.*|libbinder\.so@0x.*|libc\.so@.*|libc-2\.5\.so@.*|libEGL\.so@.*|libdvm\.so\s*@\s*0x.*|libgui\.so@0x.*|libicudata.so@.*|libMali\.so@0x.*|libutils\.so@0x.*|libz\.so@0x.*|linux-gate\.so@0x.*|mnt@asec@org\.mozilla\.f.*-\d@pkg\.apk@classes\.dex@0x.*|MOZ_Assert|MOZ_Crash|mozcrt19.dll@0x.*|mozilla::ipc::RPCChannel::Call\(IPC::Message\*, IPC::Message\*\)|_NSRaiseError|(Nt|Zw)WaitForSingleObject(Ex)?|(Nt|Zw)WaitForMultipleObjects(Ex)?|nvmap@0x.*|org\.mozilla\.f.*-\d\.apk@0x.*|RaiseException|RtlpAdjustHeapLookasideDepth|system@framework@.*\.jar@classes\.dex@0x.*|___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___|WaitForSingleObjectExImplementation|WaitForMultipleObjectsExImplementation|RealMsgWaitFor.*_ZdlPv|zero
# a regular expression matching frame signatures that should always be coupled with the following frame signature when generating an overall signature
#prefix_signature_re=@0x0|.*CrashAtUnhandlableOOM|Abort|.*abort|_alloca_probe.*|__android_log_assert|arena_.*|BaseGetNamedObjectDirectory|.*calloc|cert_.*|CERT_.*|CFRelease|_chkstk|CrashInJS|__delayLoadHelper2|dlmalloc|dlmalloc_trim|dvm.*|EtwEventEnabled|extent_.*|fastcopy_I|fastzero_I|_files_getaddrinfo|.*free|GCGraphBuilder::NoteXPCOMChild|getanswer|huge_dalloc|ialloc|imalloc|init_library|isalloc|je_malloc|jemalloc_crash|je_realloc|JNI_CreateJavaVM|_JNIEnv.*|JNI_GetCreatedJavaVM.*|js::AutoCompartment::AutoCompartment.*|JSAutoCompartment::JSAutoCompartment.*|JS_DHashTableEnumerate|JS_DHashTableOperate|kill|__libc_android_abort|libobjc.A.dylib@0x1568.|(libxul\.so|xul\.dll|XUL)@0x.*|LL_.*|malloc|_MD_.*|memcmp|__memcmp16|memcpy|memmove|memset|mozalloc_abort.*|mozalloc_handle_oom|moz_free|mozilla::AndroidBridge::AutoLocalJNIFrame::~AutoLocalJNIFrame|mozilla::ipc::RPCChannel::Call|mozilla::ipc::RPCChannel::CxxStackFrame::CxxStackFrame|mozilla::ipc::RPCChannel::EnteredCxxStack|mozilla::ipc::RPCChannel::Send|mozilla.*FatalError|moz_xmalloc|moz_xrealloc|NP_Shutdown|nsACString_internal::Assign.*|nsCOMPtr.*|NS_ABORT_OOM.*|NS_DebugBreak.*|[-+]\[NSException raise(:format:(arguments:)?)?\]|nsObjCExceptionLogAbort(\(.*?\)){0,1}|nsRefPtr.*|NSS.*|nss.*|nsTArray<.*|nsTArray_base<.*|NtUser.*|objc_exception_throw|objc_msgSend|operator new\([^,\)]+\)|PL_.*|port_.*|PORT_.*|_PR_.*|PR_.*|pthread_mutex_lock|_purecall|raise|realloc|recv|_RTC_Terminate|Rtl.*|_Rtl.*|__Rtl.*|SEC_.*Item|seckey_.*|SECKEY_.*|__security_check_cookie|send|setjmp|sigblock|sigprocmask|SocketAccept|SocketAcceptRead|SocketAvailable|SocketAvailable64|SocketBind|SocketClose|SocketConnect|SocketGetName|SocketGetPeerName|SocketListen|SocketPoll|SocketRead|SocketRecv|SocketSend|SocketShutdown|SocketSync|SocketTransmitFile|SocketWrite|SocketWritev|ssl_.*|SSL_.*|strcat|ssl3_.*|strchr|strcmp|strcpy|.*strdup|strlen|strncpy|strzcmp16|strstr|__swrite|TouchBadMemory|_VEC_memcpy|_VEC_memzero|.*WaitFor.*|wcslen|__wrap_realloc|WSARecv.*|WSASend.*|_ZdaPvRKSt9nothrow_t"|zzz_AsmCodeRange_.*|.*DebugAbort.*|mozilla::ipc::MessageChannel::~MessageChannel.*
# a list of frame signatures that should always be considered top of the stack if present in the stack
#signature_sentinels=_purecall, mozilla::ipc::RPCChannel::Call(IPC::Message*, IPC::Message*), configman.option.<lambda>, Java_org_mozilla_gecko_GeckoAppShell_reportJavaCrash, google_breakpad::ExceptionHandler::HandleInvalidParameter(wchar_t const*, wchar_t const*, wchar_t const*, unsigned int, unsigned int)
# any signatures that match this list should be combined with their associated source code line numbers
#signatures_with_line_numbers_re=js_Interpret
[[java_signature]]
# the class that can generate a Java signature
#java_signature_tool_class=socorro.processor.signature_utilities.JavaSignatureTool
[[statistics]]
# a comma delimeted list of counters
# see "resource.statsd.active_counters_list" for the default or override it here
#active_counters_list=
# a string to be used as the prefix for statsd names
# see "resource.statsd.prefix" for the default or override it here
#prefix=
# name of a class that will gather statistics
#stats_class=socorro.lib.statistics.StatisticsForStatsd
# the hostname of statsd
# see "resource.statsd.statsd_host" for the default or override it here
#statsd_host=
# the port number for statsd
# see "resource.statsd.statsd_port" for the default or override it here
#statsd_port=8125
[producer_consumer]
# the delay in seconds if no job is found
#idle_delay=7
# the maximum size of the internal queue
#maximum_queue_size=8
# the number of threads
#number_of_threads=4
# the class implements a threaded producer consumer queue
#producer_consumer_class=socorro.lib.threaded_task_manager.ThreadedTaskManager
[registrar]
# the class that registers and tracks processors
#registrar_class=socorro.processor.registration_client.ProcessorAppNullRegistrationClient
[source]
# the source storage class
crashstorage_class=socorro.external.fs.crashstorage.FSPermanentStorage
# the default dump field
# see "resource.fs.dump_field" for the default or override it here
#dump_field=upload_file_minidump
# the suffix used to identify a dump file
# see "resource.fs.dump_file_suffix" for the default or override it here
#dump_file_suffix=.dump
# a list of keys not allowed in a redacted processed crash
# see "resource.redactor.forbidden_keys" for the default or override it here
#forbidden_keys=url, email, user_id, exploitability
# a path to a file system
# see "resource.fs.fs_root" for the default or override it here
#fs_root=./crashes
# the suffix used to identify a json file
# see "resource.fs.json_file_suffix" for the default or override it here
#json_file_suffix=.json
# the suffix used to identify a gzipped json file
# see "resource.fs.jsonz_file_suffix" for the default or override it here
#jsonz_file_suffix=.jsonz
# the directory base name to use for the named radix tree storage
# see "resource.fs.name_branch_base" for the default or override it here
#name_branch_base=name
# the name of the class that implements a 'redact' method
# see "resource.redactor.redactor_class" for the default or override it here
#redactor_class=socorro.external.crashstorage_base.Redactor
# umask to use for new files
# see "resource.fs.umask" for the default or override it here
#umask=18