1733a5356Srb144127# 2733a5356Srb144127# CDDL HEADER START 3733a5356Srb144127# 4733a5356Srb144127# The contents of this file are subject to the terms of the 533bc6378Srb144127# Common Development and Distribution License (the "License"). 633bc6378Srb144127# You may not use this file except in compliance with the License. 7733a5356Srb144127# 8733a5356Srb144127# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9733a5356Srb144127# or http://www.opensolaris.org/os/licensing. 10733a5356Srb144127# See the License for the specific language governing permissions 11733a5356Srb144127# and limitations under the License. 12733a5356Srb144127# 13733a5356Srb144127# When distributing Covered Code, include this CDDL HEADER in each 14733a5356Srb144127# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15733a5356Srb144127# If applicable, add the following below this CDDL HEADER, with the 16733a5356Srb144127# fields enclosed by brackets "[]" replaced with your own identifying 17733a5356Srb144127# information: Portions Copyright [yyyy] [name of copyright owner] 18733a5356Srb144127# 19733a5356Srb144127# CDDL HEADER END 20733a5356Srb144127# 2133bc6378Srb144127# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 22733a5356Srb144127# Use is subject to license terms. 23733a5356Srb144127# 24733a5356Srb144127#ident "%Z%%M% %I% %E% SMI" 25733a5356Srb144127 26733a5356Srb144127# transport these FMA events from the domain to the SP 27733a5356Srb144127 28733a5356Srb144127subscribe fault.* 2933bc6378Srb144127subscribe list.repaired 30733a5356Srb144127 31*4b476ed5Sdarudy# 32*4b476ed5Sdarudy# etm agent properties: 33*4b476ed5Sdarudy# 34*4b476ed5Sdarudy# On supported systems, ETM can transport SP Alert event messages from the 35*4b476ed5Sdarudy# SP to Solaris. SP Alert messages are generated by the Service Processor 36*4b476ed5Sdarudy# and indicate various conditions monitored by the SP. The following 37*4b476ed5Sdarudy# properties define how those messages are handled by Solaris. 38*4b476ed5Sdarudy# 39*4b476ed5Sdarudy# etm_alert_console - bool - log messages to system console (default=false) 40*4b476ed5Sdarudy# etm_alert_syslogd - bool - log messages to messages file through 41*4b476ed5Sdarudy# syslogd (default=true) 42*4b476ed5Sdarudy# etm_alert_facility - string - syslog(3C) log facility to use 43*4b476ed5Sdarudy# (default=LOG_DAEMON) 44*4b476ed5Sdarudy# 45*4b476ed5Sdarudy# The "etm_alert_facility" property may only be configured to use 46*4b476ed5Sdarudy# LOG_DAEMON (which is the default) or one of LOG_LOCAL[0-7]. For 47*4b476ed5Sdarudy# information about the use of local log facilities, refer to syslog(3C), 48*4b476ed5Sdarudy# syslogd(1M), and syslog.conf(4). 49*4b476ed5Sdarudy# 50*4b476ed5Sdarudy# Example settings: 51*4b476ed5Sdarudy# setprop etm_alert_console true 52*4b476ed5Sdarudy# setprop etm_alert_facility LOG_LOCAL0 53*4b476ed5Sdarudy# 54