Preparation of config files for release
[profile/ivi/dlt-daemon.git] / src / system / dlt-system.conf
1 # Configuration file of DLT system manager
2 #
3
4 ########################################################################
5 # General configuration                                                
6 ########################################################################
7
8 # The application Id used for the System manager (Default: SYS)
9 ApplicationId = SYS
10
11 ########################################################################
12 # Syslog Adapter configuration                                                
13 ########################################################################
14
15 # Enable the Syslog Adapter (Default: 0)
16 SyslogEnable = 0
17
18 # The Context Id of the syslog adapter (Default: SYSL)
19 SyslogContextId = SYSL
20
21 # The UDP port opened by DLT system mamager to receive system logs (Default: 47111)
22 SyslogPort = 47111
23
24 ########################################################################
25 # Filetransfer Manager                                                
26 ########################################################################
27
28 # Enable the Filetransfer (Default: 0)
29 FiletransferEnable = 0
30
31 # The Context Id of the filetransfer (Default: FILE)
32 FiletransferContextId = FILE
33
34 # Time after startup of dlt-system when first file is transfered (Default: 30)
35 # Time in seconds
36 FiletransferTimeStartup = 30
37
38 # Time to wait when transfered file is deleted and next file transfer starts (Default: 10)
39 # Time in seconds
40 FiletransferTimeDelay = 10
41
42 # Time to wait between two file transfer logs of a single file to DLT.  (Default: 10)
43 # Time in ms seconds
44 FiletransferTimeoutBetweenLogs = 10
45
46 # Temporary directory to use.
47 # File transfer will move a file to this directory
48 # while it is being compressed and sent
49 FiletransferTempDir = /tmp
50
51 # You can define multiple file transfer directories
52 # Define the directory to watch, whether to compress
53 # the file with zlib and the zlib compression level
54 # For parsing purposes, FiletransferCompressionLevel
55 # must be the last one of three values.
56 FiletransferDirectory = /var/dlt/ft1
57 FiletransferCompression = 1
58 FiletransferCompressionLevel = 5
59
60 # Second directory to watch
61 FiletransferDirectory = /var/dlt/ft2
62 FiletransferCompression = 0
63 FiletransferCompressionLevel = 5
64
65 # And so on...
66 FiletransferDirectory = /var/dlt/ft3
67 FiletransferCompression = 0
68 FiletransferCompressionLevel = 5
69
70
71 ########################################################################
72 # Log short files, especially from proc filesystem                                                
73 ########################################################################
74
75 # Enable the logging of files (Default: 0)
76 LogFileEnable = 0
77
78 # Log different files
79 # Mode: 0 = off, 1 = startup only, 2 = regular
80 # TimeDelay: If mode regular is set, time delay is the number of seconds for next sent
81
82 # Log the file /etc/sysrel
83 LogFileFilename = /etc/sysrel
84 LogFileMode = 1
85 LogFileTimeDelay = 3
86 LogFileContextId = VER
87
88 # Log the file /proc/version
89 LogFileFilename = /proc/version
90 LogFileMode = 1
91 LogFileTimeDelay = 3
92 LogFileContextId = VERK
93
94 # Log the file /proc/meminfo
95 # LogFileFilename = /proc/meminfo
96 # LogFileMode = 2
97 # LogFileTimeDelay = 5
98 # LogFileContextId = MEM
99
100 # Log the file /proc/cpuinfo
101 # LogFileFilename = /proc/cpuinfo
102 # LogFileMode = 2
103 # LogFileTimeDelay = 5
104 # LogFileContextId = CPU
105
106 # Log the file /proc/stat
107 LogFileFilename = /proc/stat
108 LogFileMode = 2
109 LogFileTimeDelay = 1
110 LogFileContextId = STAT
111
112 # Log the file /proc/modules
113 # LogFileFilename = /proc/modules
114 # LogFileMode = 2
115 # LogFileTimeDelay = 5
116 # LogFileContextId = MOD
117
118 # Log the file /proc/ioports
119 # LogFileFilename = /proc/ioports
120 # LogFileMode = 1
121 # LogFileTimeDelay = 5
122 # LogFileContextId = IOP
123
124 # Log the file /proc/iomem
125 # LogFileFilename = /proc/iomem
126 # LogFileMode = 1
127 # LogFileTimeDelay = 5
128 # LogFileContextId = IOM
129
130 ########################################################################
131 # Log Processes                                                
132 ########################################################################
133
134 # Enable the logging of processes (Default: 0)
135 LogProcessesEnable = 0
136
137 # The Context Id of the kernel version (Default: PROC)
138 LogProcessesContextId = PROC
139
140 # Log different processes
141 # Name: * = all process, X=alternative name (must correspind to /proc/X/cmdline
142 # Filename: the filename in the subdirectory /proc/processid/
143 # Mode: 0 = off, 1 = startup only, 2 = regular
144 # TimeDelay: If mode regular is set, time delay is the number of seconds for next sent
145
146 LogProcessName = *
147 LogProcessFilename = stat
148 LogProcessMode = 2
149 LogProcessTimeDelay = 5
150
151 # LogProcessName = dlt_viewer
152 # LogProcessFilename = stat
153 # LogProcessMode = 2
154 # LogProcessTimeDelay = 1
155