Updated doxygen documentation, readme, man pages and release notes
[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 in seconds after startup of dlt-system when first file is transfered (Default: 30)
35 FiletransferTimeStartup = 30
36
37 # Time to wait when transfered file is deleted and next file transfer starts (Default: 10)
38 # Time in seconds
39 FiletransferTimeDelay = 10
40
41 # Time in ms seconds to wait between two file transfer logs of a single file to DLT.  (Default: 10)
42 FiletransferTimeoutBetweenLogs = 10
43
44 # Temporary directory to use.
45 # File transfer will move a file to this directory
46 # while it is being compressed and sent
47 FiletransferTempDir = /tmp
48
49 # You can define multiple file transfer directories
50 # Define the directory to watch, whether to compress
51 # the file with zlib and the zlib compression level
52 # For parsing purposes, FiletransferCompressionLevel
53 # must be the last one of three values.
54 FiletransferDirectory = /var/dlt/ft1
55 FiletransferCompression = 1
56 FiletransferCompressionLevel = 5
57
58 # Second directory to watch
59 FiletransferDirectory = /var/dlt/ft2
60 FiletransferCompression = 0
61 FiletransferCompressionLevel = 5
62
63 # And so on...
64 FiletransferDirectory = /var/dlt/ft3
65 FiletransferCompression = 0
66 FiletransferCompressionLevel = 5
67
68
69 ########################################################################
70 # Log short files, especially from proc filesystem                                                
71 ########################################################################
72
73 # Enable the logging of files (Default: 0)
74 LogFileEnable = 0
75
76 # Log different files
77 # Mode: 0 = off, 1 = startup only, 2 = regular
78 # TimeDelay: If mode regular is set, time delay is the number of seconds for next sent
79
80 # Log the file /etc/sysrel
81 LogFileFilename = /etc/sysrel
82 LogFileMode = 1
83 LogFileTimeDelay = 3
84 LogFileContextId = VER
85
86 # Log the file /proc/version
87 LogFileFilename = /proc/version
88 LogFileMode = 1
89 LogFileTimeDelay = 3
90 LogFileContextId = VERK
91
92 # Log the file /proc/meminfo
93 # LogFileFilename = /proc/meminfo
94 # LogFileMode = 2
95 # LogFileTimeDelay = 5
96 # LogFileContextId = MEM
97
98 # Log the file /proc/cpuinfo
99 # LogFileFilename = /proc/cpuinfo
100 # LogFileMode = 2
101 # LogFileTimeDelay = 5
102 # LogFileContextId = CPU
103
104 # Log the file /proc/stat
105 LogFileFilename = /proc/stat
106 LogFileMode = 2
107 LogFileTimeDelay = 1
108 LogFileContextId = STAT
109
110 # Log the file /proc/modules
111 # LogFileFilename = /proc/modules
112 # LogFileMode = 2
113 # LogFileTimeDelay = 5
114 # LogFileContextId = MOD
115
116 # Log the file /proc/ioports
117 # LogFileFilename = /proc/ioports
118 # LogFileMode = 1
119 # LogFileTimeDelay = 5
120 # LogFileContextId = IOP
121
122 # Log the file /proc/iomem
123 # LogFileFilename = /proc/iomem
124 # LogFileMode = 1
125 # LogFileTimeDelay = 5
126 # LogFileContextId = IOM
127
128 ########################################################################
129 # Log Processes                                                
130 ########################################################################
131
132 # Enable the logging of processes (Default: 0)
133 LogProcessesEnable = 0
134
135 # The Context Id of the kernel version (Default: PROC)
136 LogProcessesContextId = PROC
137
138 # Log different processes
139 # Name: * = all process, X=alternative name (must correspind to /proc/X/cmdline
140 # Filename: the filename in the subdirectory /proc/processid/
141 # Mode: 0 = off, 1 = startup only, 2 = regular
142 # TimeDelay: If mode regular is set, time delay is the number of seconds for next sent
143
144 LogProcessName = *
145 LogProcessFilename = stat
146 LogProcessMode = 2
147 LogProcessTimeDelay = 5
148
149 # LogProcessName = dlt_viewer
150 # LogProcessFilename = stat
151 # LogProcessMode = 2
152 # LogProcessTimeDelay = 1
153