summaryrefslogtreecommitdiff
path: root/src/daemon/dlt.conf
diff options
context:
space:
mode:
authorAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2014-05-13 11:09:59 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2014-05-16 08:37:34 +0200
commit34a670beb01bda0723f8be004b4ab94eb5287753 (patch)
tree1c5400f2786e62b8094c3000ae7408f1cf9c88c5 /src/daemon/dlt.conf
parent8b48e73f79b4463393916e4c6696917e3dedd026 (diff)
downloadDLT-daemon-34a670beb01bda0723f8be004b4ab94eb5287753.tar.gz
Make daemon buffer size configurable
Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
Diffstat (limited to 'src/daemon/dlt.conf')
-rw-r--r--src/daemon/dlt.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/daemon/dlt.conf b/src/daemon/dlt.conf
index a079d3e..1032a9a 100644
--- a/src/daemon/dlt.conf
+++ b/src/daemon/dlt.conf
@@ -44,6 +44,15 @@ LoggingFilename = /tmp/dlt.log
# Timeout on send to client (sec)
TimeOutOnSend = 4
+# The minimum size of the Ringbuffer, used for storing temporary DLT messages, until client is connected (Default: 500000)
+RingbufferMinSize = 500000
+
+# The max size of the Ringbuffer, used for storing temporary DLT messages, until client is connected (Default: 10000000)
+RingbufferMaxSize = 10000000
+
+# The step size the Ringbuffer is increased, used for storing temporary DLT messages, until client is connected (Default: 500000)
+RingbufferStepSize = 500000
+
########################################################################
# Offline Trace memory #
########################################################################