1*4a6ec905Sysun# 2*4a6ec905Sysun# CDDL HEADER START 3*4a6ec905Sysun# 4*4a6ec905Sysun# The contents of this file are subject to the terms of the 5*4a6ec905Sysun# Common Development and Distribution License (the "License"). 6*4a6ec905Sysun# You may not use this file except in compliance with the License. 7*4a6ec905Sysun# 8*4a6ec905Sysun# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*4a6ec905Sysun# or http://www.opensolaris.org/os/licensing. 10*4a6ec905Sysun# See the License for the specific language governing permissions 11*4a6ec905Sysun# and limitations under the License. 12*4a6ec905Sysun# 13*4a6ec905Sysun# When distributing Covered Code, include this CDDL HEADER in each 14*4a6ec905Sysun# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*4a6ec905Sysun# If applicable, add the following below this CDDL HEADER, with the 16*4a6ec905Sysun# fields enclosed by brackets "[]" replaced with your own identifying 17*4a6ec905Sysun# information: Portions Copyright [yyyy] [name of copyright owner] 18*4a6ec905Sysun# 19*4a6ec905Sysun# CDDL HEADER END 20*4a6ec905Sysun# 21*4a6ec905Sysun# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 22*4a6ec905Sysun# Use is subject to license terms. 23*4a6ec905Sysun# 24*4a6ec905Sysun#ident "%Z%%M% %I% %E% SMI" 25*4a6ec905Sysun 26*4a6ec905Sysun# transport these FMA events from the domain to the SP 27*4a6ec905Sysunsubscribe fault.cpu.* 28*4a6ec905Sysunsubscribe fault.memory.* 29*4a6ec905Sysunsubscribe fault.io.fire.* 30*4a6ec905Sysunsubscribe fault.io.pci.* 31*4a6ec905Sysunsubscribe fault.io.pciex.* 32*4a6ec905Sysunsubscribe fault.io.n2.* 33*4a6ec905Sysunsubscribe fault.io.vf.* 34*4a6ec905Sysunsubscribe fault.asic.ultraSPARC-T2plus.* 35*4a6ec905Sysunsubscribe list.repaired 36*4a6ec905Sysun 37*4a6ec905Sysun# 38*4a6ec905Sysun# etm agent properties: 39*4a6ec905Sysun# 40*4a6ec905Sysun# On supported systems, ETM can transport SP Alert event messages from the 41*4a6ec905Sysun# SP to Solaris. SP Alert messages are generated by the Service Processor 42*4a6ec905Sysun# and indicate various conditions monitored by the SP. The following 43*4a6ec905Sysun# properties define how those messages are handled by Solaris. 44*4a6ec905Sysun# 45*4a6ec905Sysun# etm_alert_console - bool - log messages to system console (default=false) 46*4a6ec905Sysun# etm_alert_syslogd - bool - log messages to messages file through 47*4a6ec905Sysun# syslogd (default=true) 48*4a6ec905Sysun# etm_alert_facility - string - syslog(3C) log facility to use 49*4a6ec905Sysun# (default=LOG_DAEMON) 50*4a6ec905Sysun# 51*4a6ec905Sysun# The "etm_alert_facility" property may only be configured to use 52*4a6ec905Sysun# LOG_DAEMON (which is the default) or one of LOG_LOCAL[0-7]. For 53*4a6ec905Sysun# information about the use of local log facilities, refer to syslog(3C), 54*4a6ec905Sysun# syslogd(1M), and syslog.conf(4). 55*4a6ec905Sysun# 56*4a6ec905Sysun# Example settings: 57*4a6ec905Sysun# setprop etm_alert_console true 58*4a6ec905Sysun# setprop etm_alert_facility LOG_LOCAL0 59*4a6ec905Sysun# 60