For both TRACE_LEVEL_CLIENT and TRACE_LEVEL_SERVER, the parameter can take a numeric value between 0 and 16 where 0 is disabled and 16 is the most detailed. Alternatively these parameters can also take a scalar value was follows:
|
OFF
| 0
| No tracing
| USER
| 4
| Include user errors
| ADMIN
| 6
| Include administrative errors
| SUPPORT
| 16
| Include packet contents
|
|
Level 16 (SUPPORT) is the most detailed trace level. Take care when enabling this level of detail as it will consume disk space very rapidly. Consider using the TRACE_FILELEN_SERVER and TRACE_FILENO_SERVER parameters to reduce the impact on the server. If TRACE_UNIQUE_CLIENT is set to ON then a separate trace file will be created for each client. The pid is appended to the file name e.g. client_123.trc. Note that this appears to be the default behaviour in recent versions.
When both
TRACE_FILELEN_CLIENT and
TRACE_FILENO_CLIENT are set to non-zero values, the trace files are used cyclically. When one file is full, output continues in the next file; when all files are full output continues in the first file. A sequence number is included in the file name. For example if
TRACE_FILE_CLIENT is
client and
TRACE_FILENO_CLIENT is 5 then the files will be:
|
client1_pid.trc
| client2_pid.trc
| client3_pid.trc
| client4_pid.trc
| client5_pid.trc |
|
No comments:
Post a Comment