|
Specifies the components for which trace log information is generated and the trace level in this format:
<component category>:<tracelevel>
Component catogories can be set to:
-
All is used to trace general report server activity for all processes that are not broken out into the specific categories.
-
RunningJobs is used to trace an in-progress report or subscription operation.
-
SemanticQueryEngine is used to trace a semantic query that is processed when a user performs ad hoc data exploration in a model-based report.
-
SemanticModelGenerator is used to trace model generation.
-
http is used to enable the Report Server HTTP Log file. For more information, see Report Server HTTP Log.
Trace level valid values are:
0= Disables tracing
1= Exceptions and restarts
2= Exceptions, restarts, warnings
3= Exceptions, restarts, warnings, status messages (default)
4= Verbose mode
The default value for Report Server is: "all:3".
You can specify all or some of the components (all, RunningJobs, SemanticQueryEngine, SemanticModelGenerator). If you do not want to generate information for a specific component, you can disable tracing for it (for example, "SemanticModelGenerator:0"). Do not disable tracing for all.
If you do not append a trace level to the component, the value specified for DefaultTraceSwitch is used. For example, if you specify "all,RunningJobs,SemanticQueryEngine,SemanticModelGenerator", all components use the default trace level.
You can set "SemanticQueryEngine:4" if you want to view the Transact-SQL statements that are generated for each semantic query. The Transact-SQL statements are recorded in the trace log. The following example illustrates the configuration setting that adds Transact-SQL statements to the log:
<add name="Components" value="all,SemanticQueryEngine:4" />
|