733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# CDDL HEADER START
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# The contents of this file are subject to the terms of the
33bc63788dbca06354c73b744c41d4781504e89brb# Common Development and Distribution License (the "License").
33bc63788dbca06354c73b744c41d4781504e89brb# You may not use this file except in compliance with the License.
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# or http://www.opensolaris.org/os/licensing.
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# See the License for the specific language governing permissions
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# and limitations under the License.
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# When distributing Covered Code, include this CDDL HEADER in each
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# If applicable, add the following below this CDDL HEADER, with the
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# fields enclosed by brackets "[]" replaced with your own identifying
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# information: Portions Copyright [yyyy] [name of copyright owner]
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# CDDL HEADER END
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
33bc63788dbca06354c73b744c41d4781504e89brb# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# Use is subject to license terms.
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#
733a5356058ae0150a67d61f0ad8e5260d2acae3rb#ident "%Z%%M% %I% %E% SMI"
733a5356058ae0150a67d61f0ad8e5260d2acae3rb
733a5356058ae0150a67d61f0ad8e5260d2acae3rb# transport these FMA events from the domain to the SP
733a5356058ae0150a67d61f0ad8e5260d2acae3rb
733a5356058ae0150a67d61f0ad8e5260d2acae3rbsubscribe fault.*
33bc63788dbca06354c73b744c41d4781504e89brbsubscribe list.repaired
733a5356058ae0150a67d61f0ad8e5260d2acae3rb
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy#
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# etm agent properties:
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy#
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# On supported systems, ETM can transport SP Alert event messages from the
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# SP to Solaris. SP Alert messages are generated by the Service Processor
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# and indicate various conditions monitored by the SP. The following
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# properties define how those messages are handled by Solaris.
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy#
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# etm_alert_console - bool - log messages to system console (default=false)
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# etm_alert_syslogd - bool - log messages to messages file through
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# syslogd (default=true)
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# etm_alert_facility - string - syslog(3C) log facility to use
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# (default=LOG_DAEMON)
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy#
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# The "etm_alert_facility" property may only be configured to use
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# LOG_DAEMON (which is the default) or one of LOG_LOCAL[0-7]. For
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# information about the use of local log facilities, refer to syslog(3C),
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# syslogd(1M), and syslog.conf(4).
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy#
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# Example settings:
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# setprop etm_alert_console true
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy# setprop etm_alert_facility LOG_LOCAL0
4b476ed547ce189d989c425cd2f82986abd37b4ddarudy#