Previous Page | Next Page

Administering Logging for SAS Servers

Capture Metadata Server Management Events in the System Facility Appender

The App.Meta.Mgmt logger logs metadata server management activity such as the following:

You might want to capture these events in your operating system facility. To do so, add an instance of the appropriate system facility appender to the metadata server's logging configuration file, and direct App.Meta.Mgmt events to that appender.

For Windows systems, add the following lines to the logging configuration file:

<appender name="eventLog" class="WindowsEventAppender">
<param name="Threshold" value="Warn"/>
<layout>
<param name="ConversionPattern" value="%d{yyyyMMdd:HH.mm.ss.SS}: %m"/>
</layout>
</appender>
<logger name="App.Meta.Mgmt">
  <level value="Info"/>
<appender-ref ref="eventLog"/>
</logger>

On UNIX systems, replace WindowsEventAppender with UNXFacilityAppender. On z/OS systems, replace WindowsEventAppender with ZOSFacilityAppender.

Previous Page | Next Page | Top of Page