Skip to content

Commit d1e6f71

Browse files
committed
Include worker thread config options in collector docs
1 parent c4db6cc commit d1e6f71

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

doc/CollectorDoc.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,15 @@ The basic option keys are:
219219
users that do not explicitly include their domain
220220
in their username will be assumed to be using the
221221
address'<username>@<this domain>'.
222+
* gtpthreads -- set the number of threads to use for processing GTP
223+
traffic (defaults to 1, can be set to zero to disable
224+
GTP session tracking).
225+
* smsthreads -- set the number of threads to use for intercepting SMS
226+
messages (defaults to 1, can be set to zero to disable
227+
SMS interception).
228+
* emailthreads -- set the number of threads to use for processing email
229+
traffic (defaults to 1, can be set to zero to disable
230+
email interception).
222231

223232
Be aware that increasing the number of threads used for sequence number
224233
tracking, encoding or forwarding can actually decrease OpenLI's performance,

doc/exampleconfigs/collector-example.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@ encoderthreads: 2
2828
# mediators. You probably don't need to change this.
2929
forwardingthreads: 1
3030

31+
# Number of threads to use for parsing GTP traffic to intercept mobile
32+
# data session. Can be set to zero if the collector will not see GTP traffic.
33+
gtpthreads: 1
34+
35+
# Number of threads to use for intercepting SMS messages sent over SIP
36+
# Can be set to zero if the collector will not see SMS over SIP.
37+
smsthreads: 1
38+
39+
# Number of threads to use for parsing email traffic (SMTP, IMAP, and POP3).
40+
# Can be set to zero if the collector will not see email traffic, or you are
41+
# not required to perform email interception.
42+
emailthreads: 1
43+
3144
# Set this to yes if you want to override the policy of not trusting the
3245
# contents of the "From:" field in SIP packets (as this field is not
3346
# validated and can be easily spoofed).

0 commit comments

Comments
 (0)