forked from mozilla-services/socorro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrashmover.ini-dist
78 lines (60 loc) · 2.25 KB
/
crashmover.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
# name: application
# doc: the fully qualified module or class of the application
# converter: configman.converters.class_converter
application='CrashMoverApp'
[destination]
# name: crashstorage_class
# doc: the destination storage class
# converter: configman.converters.class_converter
crashstorage_class=''
[logging]
# name: stderr_error_logging_level
# doc: logging level for the logging to stderr (10 - DEBUG, 20 - INFO, 30 - WARNING, 40 - ERROR, 50 - CRITICAL)
# converter: int
stderr_error_logging_level='10'
# name: stderr_line_format_string
# doc: python logging system format for logging to stderr
# converter: str
stderr_line_format_string='{asctime} {levelname} - {threadName} - {message}'
# name: syslog_error_logging_level
# doc: logging level for the log file (10 - DEBUG, 20 - INFO, 30 - WARNING, 40 - ERROR, 50 - CRITICAL)
# converter: int
syslog_error_logging_level='40'
# name: syslog_facility_string
# doc: syslog facility string ("user", "local0", etc)
# converter: str
syslog_facility_string='user'
# name: syslog_host
# doc: syslog hostname
# converter: str
syslog_host='localhost'
# name: syslog_line_format_string
# doc: python logging system format for syslog entries
# converter: str
syslog_line_format_string='crashmover (pid {process}): {asctime} {levelname} - {threadName} - {message}'
# name: syslog_port
# doc: syslog port
# converter: int
syslog_port='514'
[producer_consumer]
# name: idle_delay
# doc: the delay in seconds if no job is found
# converter: int
idle_delay='7'
# name: maximum_queue_size
# doc: the maximum size of the internal queue
# converter: int
maximum_queue_size='8'
# name: number_of_threads
# doc: the number of threads
# converter: int
number_of_threads='4'
# name: producer_consumer_class
# doc: the class implements a threaded producer consumer queue
# converter: configman.converters.class_converter
producer_consumer_class='socorro.lib.threaded_task_manager.ThreadedTaskManager'
[source]
# name: crashstorage_class
# doc: the source storage class
# converter: configman.converters.class_converter
crashstorage_class=''