|
Specifies the components for which trace log information is generated and the trace level. Valid values vary across the configuration files:
In the ReportServerService.exe.config and the Web.config files for Report Manager:
The default value is all. Other valid values for this setting include the names of internal components. Do not modify this value in those configuration files.
In the Web.config file for Report Server:
The default value is "all,RunningJobs:3,SemanticQueryEngine:2,SemanticModelGenerator:2". The valid values for Components in this Web.config file include a comma-delimited list of components and the trace level for each component, where 0=disables tracing, 1=Exceptions and restarts, 2=Exceptions, restarts, warnings, 3=Exceptions, restarts, warnings, status messages (default), 4=Verbose.
-
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.
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 atrace 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" />
|