# This script collects all component status information from the iRMC system report # For cookdown the component status identifier and a mapped HealthStatus # property bag are returned and filtered afterwards for the specific component status
# Note: Due to different hosting depth levels of the possible component status instances # the IP and Port Information cannot be provided in a consistent matter, # ManagementUrl Property of a Component Status instance is used instead
# Extract the IP from the ManagementUrl $IP = $ManagementUrl.Substring(0, $ManagementUrl.LastIndexOf(":")).ToUpper().TrimStart("HTTPS://")
# we need to make multiple authenticated HTTP requests... [System.Net.NetworkCredential]$NetworkCredential = New-Object System.Net.NetworkCredential ($UserName, $Password) [System.Net.ServicePointManager]::DefaultConnectionLimit = 1000
# Strip any potential garbage at the and of the XML string Function Clean-XmlString ([string]$xmlString, [string]$endTag) { if ($xmlString.contains( $endTag )) { $xmlString.TrimEnd( $xmlString.Substring( ($xmlString.IndexOf($endTag) +$endTag.Length) )) } else { $xmlString } }
Function Main { PrepareLogging -Section $SectionComponentStatusMonitor -HostTag $TagHostsMonitoring -ServerName $IP -MpName "Fujitsu.Servers.PRIMERGY.OutOfBand"
DebugOut "$IP - Component Status Monitoring for Fujitsu Out-Of-Band Server - start"
[xml]$xml = New-Object XML [System.Xml.XmlElement]$elem = $Null
[System.Xml.XmlElement]$compInst = $xml.Root.System.Components if ($compInst-ne$Null -and $compInst.HasChildNodes) { foreach ($elemin$compInst.Component) { # Workaround for 'exotic' problem where component status information has partial switched language due to long processing time. # Use numeric value instead of text (Description / Beschreibung / 説明) $StatusVal = $elem.Status.InnerText
if ($StatusVal-ne$Null -and $StatusVal-ne$CMV_COMPSTATSIG_NOTPRESENT ) { $propertyBag = $ScriptApi.CreatePropertyBag()
# Map numeric SCCI Component Status to health status switch ($StatusVal) { $CMV_COMPSTATSIG_OK {$HealthStatus = 'OK' } $CMV_COMPSTATSIG_PREFAIL {$HealthStatus = 'Warning'} $CMV_COMPSTATSIG_FAIL {$HealthStatus = 'Error' } default {$HealthStatus = 'Unknown'} }
# The Out-Of-Band Server this Component Status is hosted $propertyBag.AddValue('IP' , $IP)
# Properties to identify this component status instance $propertyBag.AddValue('ID' , $elem.Name) $propertyBag.AddValue('SensorType' , $elem.SensorType) $propertyBag.AddValue('EntityId' , $elem.EntityIdString) $propertyBag.AddValue('EntityInstance', $elem.EntityInstance) $propertyBag.AddValue('HealthStatus' , $HealthStatus)
DebugOut "$IP - Component Status '$($elem.Name)' SensorType='$($elem.SensorType)' Status='$($StatusVal)' HealthStatus='$($HealthStatus)'"
# Return each property bag as we create and populate it. $propertyBag $propertyBagReturned = $True } else { DebugOut "$IP - Component Status '$($elem.Name)' Status='Not Present'" } } } else { LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_COMPONENT_STATUS_INFORMATION -Message ("Component Status Information not available") DebugErr $ERROR_NO_COMPONENT_STATUS_INFORMATION"$IP - Component Status Information not available" } } else { # No response or garbage ... LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_COMPONENT_STATUS_INFORMATION -Message ("Component Status Information not available") DebugErr $ERROR_NO_COMPONENT_STATUS_INFORMATION"$IP - Component Status Information not available" } } catch { # Generic Exception ... LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Fujitsu Out-Of-Band Component Status Health: Exception=$_") DebugErr $SCRIPT_EVENT_NUMBER"$ManagementUrl - Component Status Health: Exception=$_" }
if ($propertyBagReturned-eq$False) { # Return empty property bag if something went wrong $propertyBag = $ScriptApi.CreatePropertyBag() $propertyBag }
DebugOut "$IP - Component Status Monitoring for Fujitsu Out-Of-Band Server - finished" }
# This script part contains helper functions to perform web based requests # and is embedded into the final script via Visual Studio Authoring Extensions
[int]$ERROR_SSL_CA_ERROR = 8399# is not a prime [int]$ERROR_SSL_CN_ERROR = 8499# is not a prime
[int]$ERROR_BMC_NO_RESPONSE = 8599# is a prime [int]$ERROR_BMC_NO_ACCESS = 8699# is a prime [int]$ERROR_BMC_TIMEOUT = 8799# is not a prime [int]$ERROR_BMC_BUSY = 8999# is a prime
$webRequest = [System.Net.WebRequest]::Create($url) if ($Credentials-ne$Null) { if ($AuthType-eq"Basic") { # Do not wait for the 401 response, send the credentials with the initial request $AuthData = [Convert]::ToBase64String([Text.Encoding]::Default.GetBytes($Credentials.UserName + ':' + $Credentials.Password)); $webRequest.Headers.Add('Authorization', "Basic $AuthData")
# Check for SSL related errors if ($global:SSL_CN_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CN_ERROR -Message ("Certificate Common Name (CN) Mismatch") DebugOut "$IP - $url Certificate Name (CN) Mismatch ..." return } elseif ($global:SSL_CA_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CA_ERROR -Message ("Certificate Authority (CA) or Certificate Chain Error") DebugOut "$IP - $url Certificate Authority (CA) or Chain Error ..." return } elseif ($global:SSL_NO_CERT_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_ERROR -Message ("No Certificate present") DebugOut "$IP - $url No Certificate present ..." return }
# no response (object), check for the timeout value. # If the connection gets closed during early send/receive, # this is typically within a few seconds, otherwise the configured timeout will have expired if ($resTime-ne$Null -and [int]$resTime.TotalSeconds -lt5) { [int]$retryDelay = (($retries +1) * $DEFAULT_RETRY_INCREMENT) # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response / connection closed ") if ($errorMsg-ne$Null) { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds ($errorMsg)"} else { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds (no details available)"} if ($innerException-ne$Null) { DebugWarn "InnerException:`r`n$innerException" } if ($stackTrace-ne$Null ) { DebugWarn "Stack Trace:`r`n$stackTrace" } Start-Sleep -Seconds $retryDelay } else { # Note: do no report actual timeout seconds here, or alert suppression will not fully work due to different text LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_TIMEOUT -Message ("'$url' no response. Timeout was $RequestTimeout seconds") DebugOut "$IP - '$url' no response within $($resTime.TotalSeconds) seconds. Timeout was $RequestTimeout seconds" return } } } catch { # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("'$url' generic Exception=$_") DebugWarn "$IP - '$url' generic Exception=$_" } } LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response after $retries retries (last error: $errorMsg)") DebugOut "$IP - '$url' no response after $retries retries (last error: $errorMsg)" }
# This script part contains helper functions to perform various logging activities # and is embedded into the final script via Visual Studio Authoring Extensions
# Log an event into the registry, Source will be 'Health Service Script' # See https://msdn.microsoft.com/en-us/library/bb437630.aspx [int]$WARNING_LEVEL = 2 [int]$ERROR_LEVEL = 1 [int]$INFO_LEVEL = 0
$LOGFILE_VERSION = 8.1.0.0
# Generic version Function RaiseEvent { Param ( [parameter(Mandatory=$true)] [string]$EventSource = "Fujitsu Out-Of-Band", [parameter(Mandatory=$true)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message )
# Backwards compatible wrapper Function LogScriptEvent { Param ( [parameter(Mandatory=$true)] [ValidateRange(0,2)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message ) # Note: Log will be written always with Event Source 'Health Service Script' if ($ScriptApi-ne$Null) { # Note: do not use actual script name to consolidate Alert Suppression from parallel scripts $ScriptApi.LogScriptEvent("Fujitsu Out-Of-Band", $EventNumber, $EventLevel, $Message) # $ScriptApi.LogScriptEvent($PoShScriptName, $EventNumber, $EventLevel, $Message) } }
# -------------------------------------------------------------------------- # Global variables = variables, which are changed in different functions ... # ... and the changed value shall be available in the calling function # -------------------------------------------------------------------------- $global:DebugMode = $False $global:DebugFile = $False $global:OverWrite = $True $global:DebugHosts = "" $global:DebugForHost = "$False" $global:ErrFilePrefix = "ERRORTrace" $global:WarnFilePrefix = "WARNINGTrace" $global:LogTargetName = "" $global:LogFilePrefix = "" $global:LogFilePath = "$Env:TEMP\SVISCOM\SVISCOM-OutOfBand" $global:LogFileName = "$LogFilePath\$($LogFilePrefix).log"
# create the target directory, if it does not exist if ( ! (Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null } if (Test-Path -Path $global:LogFilePath) { $pathOK = $True }
if (($pathOK-eq$True) -and ($fileOK-eq$False)) { # we write a new SVISCOM-OutOfBand.xm_ file every time the MP is changed to make sure all # INI-Values are documented for use by the customer if anything changes. if (Test-Path -Path $Xm_FileName) { Remove-Item -Path $Xm_FileName -Force | Out-Null } #Create xm_ file New-Item -Path $Xm_FileName -ItemType File | Out-Null
Add-Content -Path $Xm_FileName -Value @" <$SectionRoot> <!-- $SVISCOMLogXmlName Debug XML file Version $LOGFILE_VERSION
With this file logging for PowerShell scripts within the - Fujitsu Out-Of-Band Management Pack and - Optional Extension Management Packs for the Fujitsu Out-Of-Band Management Pack can be enabled.
Rename the file type from '.xm_' to '.xml' to enable reading this file.
Note: You have to enable debug for a script and also select the server in the '<$TagHostsDiscovery>' or '<$TagHostsMonitoring>' section to generate traces (see below).
The following sections specify for which PowerShell scripts the traces will be generated; Each of the sections represents a single PowerShell script.
'<$TagDebugMode>' enables logging (yes) or disables logging (no) '<$TagOverWrite>' defines continuous logging (no) or single script run logging (yes) --> <!-- DISCOVERIES --> <!-- The following section enables trace files for the Out-Of-Band Server discovery script --> <$SectionServerDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionServerDiscovery> <!-- The following section enables trace files for the SMASH device discovery script --> <$SectionSmashDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionSmashDiscovery> <!-- The following section enables trace files for the RAID discovery script --> <$SectionRaidDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidDiscovery> <!-- The following section enables trace files for the Performance Monitor discovery script --> <$SectionPerformanceDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceDiscovery>
<!-- MONITORS --> <!-- The following section enables trace files for the main server Hardware Components (CPU/Memory/Fan/PowerSupply) monitoring script --> <$SectionHardwareComponentMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionHardwareComponentMonitor> <!-- The following section enables trace files for the 'Component Status' monitoring script --> <$SectionComponentStatusMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionComponentStatusMonitor> <!-- The following section enables trace files for the RAID monitoring script --> <$SectionRaidMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidMonitor> <!-- The following section enables trace files for the Performance monitoring script --> <$SectionPerformanceMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceMonitor>
<!-- The following sections specify for which servers the traces will be generated:
In the '<$TagHostsDiscovery>' and '<$TagHostsMonitoring>' sections single or multiple servers can be specified for verbose debug output during the discovery and/or during monitoring.
Use '<$TagHostsDiscovery>' for selecting hosts for the discovery trace. Use '<$TagHostsMonitoring>' for selecting hosts for the monitoring trace.
Use 'all' (without quote signs) for all Fujitsu Out-Of-Band Servers monitored by SCOM. Use a single IP address or a comma separated list to select multiple single servers Example: <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>192.168.1.100,192.168.1.101,192.168.1.102</$TagHostsMonitoring>
will generate discovery traces for all Fujitsu Out-Of-Band Servers and will generate monitoring traces only for servers with the IP address 192.168.1.100 192.168.1.101 and 192.168.1.102 --> <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>all</$TagHostsMonitoring> </$SectionRoot> "@ } }
if (Test-Path -Path $global:LogFilePath) { if (Test-Path -Path $XmlFileName) { [xml]$xmlfile = Get-Content$XmlFileName
if ($xmlfile.$SectionRoot.$section.$TagDebugMode-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagDebugMode).ToUpper() -eq"YES") { $global:DebugMode = $True $global:DebugFile = $True } }
if ($xmlfile.$SectionRoot.$section.$TagOverWrite-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagOverWrite).ToUpper() -eq"NO") { $global:OverWrite = $False } }
if ($xmlfile.$SectionRoot.$HostTag-ne$null) { $global:DebugHosts = $($xmlfile.$SectionRoot.$HostTag).ToLower() }
# Check if DEBUG shall run for this server. # There are two possibilities to check: "all" server DEBUG is on or this server is in the list. if ($global:DebugHosts-eq"all") { $global:DebugForHost = $True } else { # Check if this host is in the list of DebugHosts $ListOfHosts = $($global:DebugHosts).split(',') DebugOut "Searching for host: $ServerName" DebugOut "in list of DebugHosts: $global:DebugHosts"
if ($ServerName.ToLower() -in$ListOfHosts) { $global:DebugForHost = $True } }
} # else file does not exist } # else directory does not exist }
Function CreateLogFile { # For some reason checking for "$True" with "if ($global:a -and $global:b)" is not evaluated correctly!!! # It works OK in a test with a simple PS script ... no idea why ... Thus we use: if ($global:DebugForHost-eq$True) { if ($global:DebugFile-eq$True) { # Create the target directory, if it does not exist if (!(Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null }
# Check if file exists and delete if it does and OverWrite is set to TRUE if (Test-Path -Path $global:LogFileName) { DebugOut "" DebugOut "Log file already exists at: $global:LogFileName" if ($global:OverWrite-eq$True) { Remove-Item -Path $global:LogFileName -Force | Out-Null } } # If the file has just been removed (OverWrite = YES) or the file does not exist: create it if (!(Test-Path -Path $global:LogFileName)) { #Create log file New-Item -Path $global:LogFileName -ItemType File | Out-Null }
Main </Script></ScriptBody> <Parameters> <Parameter> <Name>UserName</Name> <Value>$Config/UserName$</Value> </Parameter> <Parameter> <Name>Password</Name> <Value>$Config/Password$</Value> </Parameter> <Parameter> <Name>ManagementUrl</Name> <Value>$Config/ManagementUrl$</Value> </Parameter> <Parameter> <Name>TimeoutSeconds</Name> <Value>$Config/TimeoutSeconds$</Value> </Parameter> <Parameter> <Name>SkipCACheck</Name> <Value>$Config/SkipCACheck$</Value> </Parameter> <Parameter> <Name>SkipCNCheck</Name> <Value>$Config/SkipCNCheck$</Value> </Parameter> </Parameters> <TimeoutSeconds>$Config/TimeoutSeconds$</TimeoutSeconds> <StrictErrorHandling>$Config/StrictErrorHandling$</StrictErrorHandling> </ProbeAction> <!-- Full match for component status instances: ID && SensorType && EntityId && EntityInstance --> <ConditionDetectionID="FilterInstance"TypeID="System!System.ExpressionFilter"> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">Property[@Name='ID']</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Config/ID$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">Property[@Name='SensorType']</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Config/SensorType$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">Property[@Name='EntityId']</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Config/EntityId$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">Property[@Name='EntityInstance']</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Config/EntityInstance$</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </Expression> </ConditionDetection> </MemberModules> <Composition> <NodeID="FilterInstance"> <NodeID="PSScript"> <NodeID="Scheduler" /> </Node> </Node> </Composition> </Composite> </ModuleImplementation> <OutputType>System!System.PropertyBagData</OutputType> </DataSourceModuleType> <DataSourceModuleTypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.DataSource"Accessibility="Public"Batching="false"> <Configuration> <IncludeSchemaTypes> <SchemaType>Windows!Microsoft.Windows.PowerShellSchema</SchemaType> </IncludeSchemaTypes> <xsd:elementminOccurs="1"name="IntervalSeconds"type="xsd:integer"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="0"name="SyncTime"type="xsd:string"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="ScriptName"type="NonNullString"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="TimeoutSeconds"type="xsd:integer"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="0"name="StrictErrorHandling"type="xsd:boolean"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <!-- Fixed Parameters --> <xsd:elementminOccurs="1"name="UserName"type="NonNullString"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="Password"type="NonNullString"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="ManagementUrl"type="NonNullString"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="SkipCACheck"type="xsd:boolean"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="SkipCNCheck"type="xsd:boolean"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="UseComponentStatus"type="xsd:boolean"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <!-- Hardware Component key/identifiers --> <xsd:elementminOccurs="1"name="ID"type="xsd:string"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> <xsd:elementminOccurs="1"name="Host_ID"type="xsd:string"xmlns:xsd="http://www.w3.org/2001/XMLSchema" /> </Configuration> <OverrideableParameters></OverrideableParameters> <ModuleImplementationIsolation="Any"> <Composite> <MemberModules> <DataSourceID="Scheduler"TypeID="System!System.SimpleScheduler"> <IntervalSeconds>$Config/IntervalSeconds$</IntervalSeconds> <SyncTime>$Config/SyncTime$</SyncTime> </DataSource> <ProbeActionID="PSScript"TypeID="Windows!Microsoft.Windows.PowerShellPropertyBagTriggerOnlyProbe"> <ScriptName>$Config/ScriptName$</ScriptName> <ScriptBody><Script> ################################################################################## # # # NOTICE # # # # COPYRIGHT 2014 - 2016 Fujitsu Technology Solutions # # ALL RIGHTS RESERVED # # # # This computer program is CONFIDENTIAL and contains TRADE SECRETS of # # Fujitsu Technology Solutions. The receipt or possession of this program does # # not convey any rights to reproduce or disclose its contents, or to # # manufacture, use, or sell anything that it may describe, in whole or # # in part, without the specific written consent of Fujitsu Technology Solutions. # # Any reproduction of this program without the express written consent # # of Fujitsu Technology Solutions is a violation of the copyright laws and may # # subject you to civil liability and criminal prosecution. # # # ##################################################################################
# This script collects all Hardware component status information from the iRMC # System Report. # If specified, the matching component status information is evaluated first and only # if this is not desired or not supported the original iRMC System Report sections are # evaluated instead. # For cookdown the component identifier as well as the hoster's ID and a mapped HealthStatus # property bag are returned and filtered afterwards for the specific Hardware component
# set CONSTANT variables (can not be changed): set-variable -name PoShScriptName -value "HardwareComponentHealth.ps1" -option constant
# Note: Keep in sync with discovery script (Host_ID as $groupName) $ProcessorGroupName = 'Processors' $MemoryGroupName = 'Memory' $FanGroupName = 'Fans (Cooling)' $PowerSupplyGroupName = 'Power Supplies' $MainboardName = 'Mainboard'
[int]$SCRIPT_EVENT_NUMBER = 8011# a prime number...
# Note: Keep in sync with discovery [int]$ERROR_NO_MEMORY_INFORMATION = 8059# a prime [int]$ERROR_NO_PROCESSOR_INFORMATION = 8069# a prime [int]$ERROR_NO_COMPONENT_STATUS_INFORMATION = 8089# a prime
[int]$ERROR_NO_POWER_SUPPLY_INFORMATION = 8079# not a prime [int]$ERROR_NO_FAN_INFORMATION = 8049# not a prime
[xml]$xml = New-Object XML [System.Xml.XmlElement]$elem = $Null
$hostURL = $ManagementUrl
# Extract the IP from the ManagementUrl $IP = $ManagementUrl.Substring(0, $ManagementUrl.LastIndexOf(":")).ToUpper().TrimStart("HTTPS://")
# we need to make multiple authenticated HTTP requests... [System.Net.NetworkCredential]$NetworkCredential = New-Object System.Net.NetworkCredential ($username, $password) [System.Net.ServicePointManager]::DefaultConnectionLimit = 1000
# Strip any potential garbage at the and of the XML string Function Clean-XmlString ([string]$xmlString, [string]$endTag) { if ($xmlString.contains( $endTag )) { $xmlString.TrimEnd( $xmlString.Substring( ($xmlString.IndexOf($endTag) +$endTag.Length) )) } else { $xmlString } }
Function Main { PrepareLogging -Section $SectionHardwareComponentMonitor -HostTag $TagHostsMonitoring -ServerName $IP -MpName "Fujitsu.Servers.PRIMERGY.OutOfBand"
DebugOut "$IP - Hardware Component Monitoring for Fujitsu Out-Of-Band Server - start" DebugOut "$IP - ManagementUrl=$ManagementUrl UseComponentStatus=$UseComponentStatus TimeoutSeconds=$TimeoutSeconds SkipCACheck=$SkipCACheck SkipCNCheck=$SkipCNCheck"
[int]$RequestTimeout = $DEFAULT_REQUEST_TIMEOUT
try {
# Get all Component Status information (also contains CPU/Memory/Fan/PSU) if ($UseComponentStatus-eq$True) {
if ($TimeoutSeconds-lt$DEFAULT_REQUEST_TIMEOUT){ $RequestTimeout = $TimeoutSeconds }
[System.Xml.XmlElement]$compinst = $xml.Root.System.Components if ($compInst-ne$Null -and $compInst.HasChildNodes) { $HaveComponentStatus = $True } } catch { # Note: will use hardware information instead later on DebugWarn "$IP - Could not process Component Status information. Exception=$_" } } else { # No response or garbage ... LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_COMPONENT_STATUS_INFORMATION -Message ("Component Status Information not available") DebugWarn "$IP - Component Status Information not available" } }
if ( ($UseComponentStatus-eq$True) -and ($HaveComponentStatus-eq$True) ) { DebugOut "$IP - Using Component Status Information for hardware component status"
# CPU/Memory/Fan/Power Supply instances also have an associated per instance component status foreach ($elemin$compinst.Component) { # Workaround for 'exotic' problem where component status information has partial switched language due to long processing time. # Use numeric value instead of text (Description / Beschreibung / 説明) $StatusVal = $elem.Status.InnerText
if ($StatusVal-ne$Null -and $StatusVal-ne$CMV_COMPSTATSIG_NOTPRESENT ) { $propertyBag = $ScriptApi.CreatePropertyBag()
# Map numeric SCCI Component Status to health status switch ($StatusVal) { $CMV_COMPSTATSIG_OK {$HealthStatus = 'OK' } $CMV_COMPSTATSIG_PREFAIL {$HealthStatus = 'Warning'} $CMV_COMPSTATSIG_FAIL {$HealthStatus = 'Error' } default {$HealthStatus = 'Unknown'} }
# Properties to identify this component status instance $propertyBag.AddValue('ID' , $elem.Name) $propertyBag.AddValue('Host_ID' , $Host_ID) $propertyBag.AddValue('HealthStatus' , $HealthStatus)
DebugOut "$IP - Component Status '$($elem.Name)' SensorType='$($elem.SensorType)' Host_ID='$($Host_ID)' Status='$($StatusVal)' HealthStatus='$($HealthStatus)'"
#Return each property bag as we create and populate it. $propertyBag $propertyBagReturned = $True } else { DebugOut "$IP - Component Status '$($elem.Name)' Status: 'Not Present'" } } }
if ($HaveComponentStatus-eq$False) { # we need to make request for CPU/Memory/Fans/PSU, divide remaining or total time equally if ($TimeoutSeconds-gt0) { $RequestTimeout = $TimeoutSeconds / 4 } else { $RequestTimeout = $DEFAULT_REQUEST_TIMEOUT }
DebugOut "$IP - No Component Status information available - reading standard System Report (TimeoutSeconds=$TimeoutSeconds)"
DebugOut "$IP - Reading $($hostURL)/report.xml?Item=System/Processor (RequestTimeout=$RequestTimeout) ..." $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/Processor") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $RequestTimeout if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xml = [xml]( Clean-XmlString -xmlString $Response -endTag "</Root>" ) [System.Xml.XmlElement]$cpuinst = $xml.Root.System.Processor } catch { DebugErr $ERROR_NO_PROCESSOR_INFORMATION"$IP - Could not process Processor information. Exception=$_" } } else { # Every server has one or more processor(s) DebugErr $ERROR_NO_PROCESSOR_INFORMATION"$IP - Processor Information not available" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_PROCESSOR_INFORMATION -Message ("Processor Information not available") }
DebugOut "$IP - Reading $($hostURL)/report.xml?Item=System/Memory (RequestTimeout=$RequestTimeout) ..." $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/Memory") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $RequestTimeout if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xml = [xml]( Clean-XmlString -xmlString $Response -endTag "</Root>" ) [System.Xml.XmlElement]$meminst = $xml.Root.System.Memory } catch { DebugErr $ERROR_NO_MEMORY_INFORMATION"$IP - Could not process Memory information. Exception=$_" } } else { # Every server has one or more memory modules(s) DebugErr $ERROR_NO_MEMORY_INFORMATION"$IP - Memory Information not available" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_MEMORY_INFORMATION -Message ("Memory Information not available") }
DebugOut "$IP - Reading $($hostURL)/report.xml?Item=System/Fans (RequestTimeout=$RequestTimeout) ..." $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/Fans") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $RequestTimeout if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xml = [xml]( Clean-XmlString -xmlString $Response -endTag "</Root>" ) [System.Xml.XmlElement]$faninst = $xml.Root.System.Fans } catch { DebugErr $ERROR_NO_FAN_INFORMATION"$IP - Could not process Fan information. Exception=$_" } } else { # Fans are optional, but the returned XML fragment should not be empty and should contain Root... DebugErr $ERROR_NO_FAN_INFORMATION"$IP - Fan Information not available" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_FAN_INFORMATION -Message ("Fan Information not available") }
DebugOut "$IP - Reading $($hostURL)/report.xml?Item=System/PowerSupplies (RequestTimeout=$RequestTimeout) ..." $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/PowerSupplies") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $RequestTimeout if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xml = [xml]( Clean-XmlString -xmlString $Response -endTag "</Root>" ) [System.Xml.XmlElement]$psuinst = $xml.Root.System.PowerSupplies } catch { DebugErr $ERROR_NO_POWER_SUPPLY_INFORMATION"$IP - Could not process Power Supply information. Exception=$_" } } else { # Power Supplies are optional, but the returned XML fragment should not be empty and should contain Root... DebugErr $ERROR_NO_POWER_SUPPLY_INFORMATION"$IP - Power Supply Information not available" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_POWER_SUPPLY_INFORMATION -Message ("Power Supply Information not available") } }
if ($HaveComponentStatus-eq$False) { DebugOut "$IP - No Component Status information available - evaluating standard System Report"
# Processors if ($cpuinst-ne$Null) { try { foreach ($elemin$cpuinst.CPU) { $Status = $elem.Status.GetAttribute("Description") DebugOut "$IP - CPU '$($elem.SocketDesignation)' Status: $Status" if ($Status-ne"empty") { $propertyBag = $ScriptApi.CreatePropertyBag() $propertyBag.AddValue('ID' , $elem.SocketDesignation) $propertyBag.AddValue('Host_ID', $ProcessorGroupName) # Group Hoster
'Not manageable' {$propertyBag.AddValue('HealthStatus', "Unknown")} # Power Off 'not available' {$propertyBag.AddValue('HealthStatus', "Unknown")} # Power Off default {$propertyBag.AddValue('HealthStatus', "Unknown")} } #Return each property bag as we create and populate it. $propertyBag $propertyBagReturned = $True } } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - Power Supply Health: Exception=$_" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Fujitsu Out-Of-Band Power Supply Health: Exception=$_") } } else { # Power Supplies are optional (Blade) DebugOut "$IP - No Power Supply Information available" }
if ($propertyBagReturned-eq$False) { # Return empty property bag if something went wrong $propertyBag = $ScriptApi.CreatePropertyBag() $propertyBag }
DebugOut "$IP - Hardware Component Monitoring for Fujitsu Out-Of-Band Server - finished" } # This script part contains helper functions to perform web based requests # and is embedded into the final script via Visual Studio Authoring Extensions
[int]$ERROR_SSL_CA_ERROR = 8399# is not a prime [int]$ERROR_SSL_CN_ERROR = 8499# is not a prime
[int]$ERROR_BMC_NO_RESPONSE = 8599# is a prime [int]$ERROR_BMC_NO_ACCESS = 8699# is a prime [int]$ERROR_BMC_TIMEOUT = 8799# is not a prime [int]$ERROR_BMC_BUSY = 8999# is a prime
$webRequest = [System.Net.WebRequest]::Create($url) if ($Credentials-ne$Null) { if ($AuthType-eq"Basic") { # Do not wait for the 401 response, send the credentials with the initial request $AuthData = [Convert]::ToBase64String([Text.Encoding]::Default.GetBytes($Credentials.UserName + ':' + $Credentials.Password)); $webRequest.Headers.Add('Authorization', "Basic $AuthData")
# Check for SSL related errors if ($global:SSL_CN_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CN_ERROR -Message ("Certificate Common Name (CN) Mismatch") DebugOut "$IP - $url Certificate Name (CN) Mismatch ..." return } elseif ($global:SSL_CA_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CA_ERROR -Message ("Certificate Authority (CA) or Certificate Chain Error") DebugOut "$IP - $url Certificate Authority (CA) or Chain Error ..." return } elseif ($global:SSL_NO_CERT_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_ERROR -Message ("No Certificate present") DebugOut "$IP - $url No Certificate present ..." return }
# no response (object), check for the timeout value. # If the connection gets closed during early send/receive, # this is typically within a few seconds, otherwise the configured timeout will have expired if ($resTime-ne$Null -and [int]$resTime.TotalSeconds -lt5) { [int]$retryDelay = (($retries +1) * $DEFAULT_RETRY_INCREMENT) # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response / connection closed ") if ($errorMsg-ne$Null) { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds ($errorMsg)"} else { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds (no details available)"} if ($innerException-ne$Null) { DebugWarn "InnerException:`r`n$innerException" } if ($stackTrace-ne$Null ) { DebugWarn "Stack Trace:`r`n$stackTrace" } Start-Sleep -Seconds $retryDelay } else { # Note: do no report actual timeout seconds here, or alert suppression will not fully work due to different text LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_TIMEOUT -Message ("'$url' no response. Timeout was $RequestTimeout seconds") DebugOut "$IP - '$url' no response within $($resTime.TotalSeconds) seconds. Timeout was $RequestTimeout seconds" return } } } catch { # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("'$url' generic Exception=$_") DebugWarn "$IP - '$url' generic Exception=$_" } } LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response after $retries retries (last error: $errorMsg)") DebugOut "$IP - '$url' no response after $retries retries (last error: $errorMsg)" }
# This script part contains helper functions to perform various logging activities # and is embedded into the final script via Visual Studio Authoring Extensions
# Log an event into the registry, Source will be 'Health Service Script' # See https://msdn.microsoft.com/en-us/library/bb437630.aspx [int]$WARNING_LEVEL = 2 [int]$ERROR_LEVEL = 1 [int]$INFO_LEVEL = 0
$LOGFILE_VERSION = 8.1.0.0
# Generic version Function RaiseEvent { Param ( [parameter(Mandatory=$true)] [string]$EventSource = "Fujitsu Out-Of-Band", [parameter(Mandatory=$true)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message )
# Backwards compatible wrapper Function LogScriptEvent { Param ( [parameter(Mandatory=$true)] [ValidateRange(0,2)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message ) # Note: Log will be written always with Event Source 'Health Service Script' if ($ScriptApi-ne$Null) { # Note: do not use actual script name to consolidate Alert Suppression from parallel scripts $ScriptApi.LogScriptEvent("Fujitsu Out-Of-Band", $EventNumber, $EventLevel, $Message) # $ScriptApi.LogScriptEvent($PoShScriptName, $EventNumber, $EventLevel, $Message) } }
# -------------------------------------------------------------------------- # Global variables = variables, which are changed in different functions ... # ... and the changed value shall be available in the calling function # -------------------------------------------------------------------------- $global:DebugMode = $False $global:DebugFile = $False $global:OverWrite = $True $global:DebugHosts = "" $global:DebugForHost = "$False" $global:ErrFilePrefix = "ERRORTrace" $global:WarnFilePrefix = "WARNINGTrace" $global:LogTargetName = "" $global:LogFilePrefix = "" $global:LogFilePath = "$Env:TEMP\SVISCOM\SVISCOM-OutOfBand" $global:LogFileName = "$LogFilePath\$($LogFilePrefix).log"
# create the target directory, if it does not exist if ( ! (Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null } if (Test-Path -Path $global:LogFilePath) { $pathOK = $True }
if (($pathOK-eq$True) -and ($fileOK-eq$False)) { # we write a new SVISCOM-OutOfBand.xm_ file every time the MP is changed to make sure all # INI-Values are documented for use by the customer if anything changes. if (Test-Path -Path $Xm_FileName) { Remove-Item -Path $Xm_FileName -Force | Out-Null } #Create xm_ file New-Item -Path $Xm_FileName -ItemType File | Out-Null
Add-Content -Path $Xm_FileName -Value @" <$SectionRoot> <!-- $SVISCOMLogXmlName Debug XML file Version $LOGFILE_VERSION
With this file logging for PowerShell scripts within the - Fujitsu Out-Of-Band Management Pack and - Optional Extension Management Packs for the Fujitsu Out-Of-Band Management Pack can be enabled.
Rename the file type from '.xm_' to '.xml' to enable reading this file.
Note: You have to enable debug for a script and also select the server in the '<$TagHostsDiscovery>' or '<$TagHostsMonitoring>' section to generate traces (see below).
The following sections specify for which PowerShell scripts the traces will be generated; Each of the sections represents a single PowerShell script.
'<$TagDebugMode>' enables logging (yes) or disables logging (no) '<$TagOverWrite>' defines continuous logging (no) or single script run logging (yes) --> <!-- DISCOVERIES --> <!-- The following section enables trace files for the Out-Of-Band Server discovery script --> <$SectionServerDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionServerDiscovery> <!-- The following section enables trace files for the SMASH device discovery script --> <$SectionSmashDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionSmashDiscovery> <!-- The following section enables trace files for the RAID discovery script --> <$SectionRaidDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidDiscovery> <!-- The following section enables trace files for the Performance Monitor discovery script --> <$SectionPerformanceDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceDiscovery>
<!-- MONITORS --> <!-- The following section enables trace files for the main server Hardware Components (CPU/Memory/Fan/PowerSupply) monitoring script --> <$SectionHardwareComponentMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionHardwareComponentMonitor> <!-- The following section enables trace files for the 'Component Status' monitoring script --> <$SectionComponentStatusMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionComponentStatusMonitor> <!-- The following section enables trace files for the RAID monitoring script --> <$SectionRaidMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidMonitor> <!-- The following section enables trace files for the Performance monitoring script --> <$SectionPerformanceMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceMonitor>
<!-- The following sections specify for which servers the traces will be generated:
In the '<$TagHostsDiscovery>' and '<$TagHostsMonitoring>' sections single or multiple servers can be specified for verbose debug output during the discovery and/or during monitoring.
Use '<$TagHostsDiscovery>' for selecting hosts for the discovery trace. Use '<$TagHostsMonitoring>' for selecting hosts for the monitoring trace.
Use 'all' (without quote signs) for all Fujitsu Out-Of-Band Servers monitored by SCOM. Use a single IP address or a comma separated list to select multiple single servers Example: <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>192.168.1.100,192.168.1.101,192.168.1.102</$TagHostsMonitoring>
will generate discovery traces for all Fujitsu Out-Of-Band Servers and will generate monitoring traces only for servers with the IP address 192.168.1.100 192.168.1.101 and 192.168.1.102 --> <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>all</$TagHostsMonitoring> </$SectionRoot> "@ } }
if (Test-Path -Path $global:LogFilePath) { if (Test-Path -Path $XmlFileName) { [xml]$xmlfile = Get-Content$XmlFileName
if ($xmlfile.$SectionRoot.$section.$TagDebugMode-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagDebugMode).ToUpper() -eq"YES") { $global:DebugMode = $True $global:DebugFile = $True } }
if ($xmlfile.$SectionRoot.$section.$TagOverWrite-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagOverWrite).ToUpper() -eq"NO") { $global:OverWrite = $False } }
if ($xmlfile.$SectionRoot.$HostTag-ne$null) { $global:DebugHosts = $($xmlfile.$SectionRoot.$HostTag).ToLower() }
# Check if DEBUG shall run for this server. # There are two possibilities to check: "all" server DEBUG is on or this server is in the list. if ($global:DebugHosts-eq"all") { $global:DebugForHost = $True } else { # Check if this host is in the list of DebugHosts $ListOfHosts = $($global:DebugHosts).split(',') DebugOut "Searching for host: $ServerName" DebugOut "in list of DebugHosts: $global:DebugHosts"
if ($ServerName.ToLower() -in$ListOfHosts) { $global:DebugForHost = $True } }
} # else file does not exist } # else directory does not exist }
Function CreateLogFile { # For some reason checking for "$True" with "if ($global:a -and $global:b)" is not evaluated correctly!!! # It works OK in a test with a simple PS script ... no idea why ... Thus we use: if ($global:DebugForHost-eq$True) { if ($global:DebugFile-eq$True) { # Create the target directory, if it does not exist if (!(Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null }
# Check if file exists and delete if it does and OverWrite is set to TRUE if (Test-Path -Path $global:LogFileName) { DebugOut "" DebugOut "Log file already exists at: $global:LogFileName" if ($global:OverWrite-eq$True) { Remove-Item -Path $global:LogFileName -Force | Out-Null } } # If the file has just been removed (OverWrite = YES) or the file does not exist: create it if (!(Test-Path -Path $global:LogFileName)) { #Create log file New-Item -Path $global:LogFileName -ItemType File | Out-Null }
# set CONSTANT variables (can not be changed): set-variable -name PoShScriptName -value "ServerDiscovery.ps1" -option constant
[int]$ERROR_UNSUPPORTED_FIRMWARE = 8009# a prime
[int]$SCRIPT_EVENT_NUMBER = 8017# a prime
[int]$ERROR_MEMORY_INFORMATION_NOT_INITIALIZED = 8039# a prime
# Note: Keep in sync with monitoring scripts [int]$ERROR_NO_MEMORY_INFORMATION = 8059# a prime [int]$ERROR_NO_PROCESSOR_INFORMATION = 8069# a prime [int]$ERROR_NO_COMPONENT_STATUS_INFORMATION = 8089# a prime
[int]$ERROR_NO_POWER_SUPPLY_INFORMATION = 8079# not a prime [int]$ERROR_NO_FAN_INFORMATION = 8049# not a prime
[int]$ERROR_NO_CONFIG_INFORMATION = 8123# a prime
# we need to make multiple authenticated HTTP requests... [System.Net.NetworkCredential]$NetworkCredential = New-Object System.Net.NetworkCredential ($username, $password) [System.Net.ServicePointManager]::DefaultConnectionLimit = 1000
$ServerDnsName = "N/A" $ServerDnsDomain = "N/A" $NetworkName = $IP# default to IP Address $DnsName = $IP# default to IP Address
# Strip any potential garbage at the and of the XML string Function Clean-XmlString ([string]$xmlString, [string]$endTag) { if ($xmlString.contains( $endTag )) { $xmlString.TrimEnd( $xmlString.Substring( ($xmlString.IndexOf($endTag) +$endTag.Length) )) } else { $xmlString } }
# Due to various problems we support iRMC S4 firmware 8.2x and later (e.g. 8.23F) # Note: internal pre-releases are marked as 96.xx / 97.xx / 98.xx / 99.xx and are considered unsupported Function FirmwareVersionSupported ([string]$Version) { # iRMC S4 if ( ($Version-match"^8.([2-9][0-9])") -or ($Version-match"^9.([0-9][0-9])") -or ($Version-match"^[1-8][0-9].([0-9][0-9])")) { return$True } # iRMC S5 re-started version numbering from 1.xx if ( ($Version-match"^1.([0-9][0-9])") ) { return$True }
return$False }
# Check if there is already an existing iRMC object for this discovery. # If so, mark discovery Function BailOutAndTestForExisting { # Load Extensions $OMPSInstallKey = "HKLM:\Software\Microsoft\System Center Operations Manager\12\Setup\Powershell\V2" $regKey = get-item$OMPSInstallKey $OMPSInstallPath = $regKey.GetValue("InstallDirectory") $omModule = $OMPSInstallPath + "OperationsManager" Import-Module -Name $omModule
$discoveryData.IsSnapshot = $True# default to not found ... try { $MyObj = Get-SCOMClass -Name 'Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice' | Get-SCOMClassInstance | Where {$_.'[Microsoft.SystemCenter.OOB.WSManDevice].IP'.Value -eq$IP} if ($MyObj-ne$Null) { DebugOut "$IP - Found existing SCOM object - marking discovery incomplete..." $discoveryData.IsSnapshot = $False } else { DebugOut "$IP - NOT found as existing SCOM object - giving up" } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - Could not determine existing object. Exception: $_" }
# Check if HP-SIM Integration response is delivered from the BMC, we can use this to identify the server type etc. # and returns 404 when disabled. Used to distinguish Fujitsu iRMC from other vendor WsMan/BMC devices $Response = DoWebRequest -url ($hostURL + "/xmldata?item=All") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $DEFAULT_REQUEST_TIMEOUT if ($Response-ne$Null -and $Response.Contains("<RIMP") ) { try { $HPSIM_XML = [xml]( Clean-XmlString -xmlString $Response -endTag "</RIMP>" ) if ($HPSIM_XML-ne$Null -and $HPSIM_XML.HasChildNodes) { $ServerModel = $($HPSIM_XML.RIMP.HSI.SPN); $ServerSerialNumber = $($HPSIM_XML.RIMP.HSI.SBSN); $ServerUuid = $($HPSIM_XML.RIMP.HSI.UUID); $BmcFirmwareVersion = $($HPSIM_XML.RIMP.MP.FWRI); $global:HpSimValid = $True DebugOut "$IP - HP-SIM Integration Response is valid: ServerModel=$ServerModel Serial=$ServerSerialNumber UUID=$ServerUuid Firmware=$BmcFirmwareVersion" } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - Invalid HP-SIM Integration Response. Exception: $_" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Invalid HP-SIM Integration Response. Exception: $_") } } else { DebugOut "$IP - HP-SIM Integration Response not available to identify the Fujitsu Out-Of-Band Server" }
if ($global:iRMCDetected-eq$False) { # we are not talking to an iRMC - get out # LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("is not a supported Fujitsu Out-Of-Band Server") DebugOut "$IP - is NOT a supported Fujitsu Out-Of-Band Server - giving up" BailOutAndTestForExisting }
if ($global:HpSimValid-eq$True) { if ($ServerModel-match"PRIMEQUEST") { DebugOut "$IP - $ServerModel$BmcFirmwareVersion is not supported" BailOut }
# Get the iRMC System Report try { # Try to get Component Status information which is not part of the full System Report # Note: Generating the full report can take some time (especially when RAID data is available) - so use the total timeout value here $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/Components") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $TimeoutSeconds if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xml = [xml]( Clean-XmlString -xmlString $Response -endTag "</Root>" ) if ($xml-ne$Null -and $xml.HasChildNodes ) { [System.Xml.XmlElement]$compinst = $xml.Root.System.Components
# Check if single items are supported. # Single items have no Summary section in the generated XML, if it's an old firmware the full report including summary will be generated, $elem = $xml.Root.Summary
$BmcFirmwareVersion = $xml.Root.GetAttribute("Version") if ($BmcFirmwareVersion-eq$Null -or $BmcFirmwareVersion-eq"") { $BmcFirmwareVersion = "N/A" } } } catch { DebugErr $ERROR_NO_COMPONENT_STATUS_INFORMATION"$IP - Could not process Component Status information. Exception=$_" $discoveryData.IsSnapshot = $False } } else { LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_COMPONENT_STATUS_INFORMATION -Message ("Component Status Information not available") DebugErr $ERROR_NO_COMPONENT_STATUS_INFORMATION"$IP - Component Status Information not available" }
if ($elem-ne$Null) { # We do have a 'Summary' section in the XML which means a partial System Report is not supported. DebugOut "$IP - Selective System Report requests are NOT supported with Firmware $BmcFirmwareVersion" $BiosVersion = $xml.Root.System.BIOS.SMBIOS.Type0.BiosVersion [System.Xml.XmlElement]$cpuinst = $xml.Root.System.Processor [System.Xml.XmlElement]$meminst = $xml.Root.System.Memory [System.Xml.XmlElement]$faninst = $xml.Root.System.Fans [System.Xml.XmlElement]$tempinst = $xml.Root.System.Temperatures [System.Xml.XmlElement]$voltinst = $xml.Root.System.Voltages [System.Xml.XmlElement]$psuinst = $xml.Root.System.PowerSupplies [System.Xml.XmlElement]$fruinst = $xml.Root.System.IDPROMS } else { # Single items are supported by the firmware, request them separately one by one (Note: timeout per request can be much shorter) DebugOut "$IP - Selective System Report requests are supported with Firmware $BmcFirmwareVersion"
# Get overall Status, which contains the server power state $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/Status") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $DEFAULT_REQUEST_TIMEOUT if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xml = [xml] ( Clean-XmlString -xmlString $Response -endTag "</Root>" ) if ($xml-ne$Null -and $xml.HasChildNodes ) { [bool]$bPowerOn = [bool]($xml.Root.System.Status.PowerState.InnerText -eq1) [bool]$bInPost = $False# Assume system is fully running when no information is available if ($xml.Root.System.Status.PowerState.HasAttribute('PostState')) { $bInPost = [bool]$xml.Root.System.Status.PowerState.GetAttribute('PostState').ToLower().Equals('true') }
DebugOut "$IP - Status: $($xml.Root.System.Status.SystemStatus.Description) Error LED: $($xml.Root.System.Status.ErrorLED.Description) CSS LED: $($xml.Root.System.Status.CssLED.Description) Identify LED: $($xml.Root.System.Status.IdentifyLED.Description)" if ($bPowerOn-eq$True) { DebugOut "$IP - Power is ON; in BIOS/POST: $($bInPost)" if ($bInPost-eq$True) { DebugOut "$IP - System is in BIOS/POST/Setup - aborting discovery" EarlyExit } } else { DebugOut "$IP - Power is OFF - aborting discovery" EarlyExit } } } catch { DebugWarn "$IP - Could not process Status information. Exception=$_" $discoveryData.IsSnapshot = $False } }
} } catch { LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Fujitsu Out-Of-Band Server Discovery: Could not read System Report Exception=$_") DebugErr $SCRIPT_EVENT_NUMBER"$IP - Fujitsu Out-Of-Band Server Discovery: Could not read System Report Exception=$_" EarlyExit }
# Test (again) for supported firmware version based on system report response in case HP-SIM was disabled if ($BmcFirmwareVersion-ne"N/A") { if ( (FirmwareVersionSupported -Version $BmcFirmwareVersion ) -eq$True ) { DebugOut "$IP - Firmware $BmcFirmwareVersion is supported" } else { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_UNSUPPORTED_FIRMWARE -Message ("Unsupported Firmware $BmcFirmwareVersion") DebugOut "$IP - Unsupported Firmware $BmcFirmwareVersion - giving up" BailOut } } else { DebugOut "$IP - Could not determine Firmware Version - giving up" BailOutAndTestForExisting }
############################################################################################# $NetworkName = $IP# default is plain IP until otherwise proven
# Associated ConfigSpace Value Id symbolic names (hexadecimal) $ConfServerOperatingSystem = '20F' $ConfBMCAssetTag = '210'# System Asset Tag: OI=0
# ConfServerOperatingSystem $a = $xml.CMDSEQ.CMD | where { $_.OE -eq$ConfServerOperatingSystem -and $_.OI -eq'0'} if (($a.DATA.Type -eq"xsd::string") -and ($a.DATA.InnerText -ne"") ){ DebugOut "$IP - Server Operating System '$($a.DATA.InnerText)'" $ServerOperatingSystem = $a.DATA.InnerText } else { DebugOut "$IP - Server Operating System NOT configured (empty)!" } # ConfBMCAssetTag $a = $xml.CMDSEQ.CMD | where { $_.OE -eq$ConfBMCAssetTag -and $_.OI -eq'0'} if (($a.DATA.Type -eq"xsd::string") -and ($a.DATA.InnerText -ne"") ){ DebugOut "$IP - Asset Tag '$($a.DATA.InnerText)'" $ServerAssetTag = $a.DATA.InnerText } else { DebugOut "$IP - Asset Tag NOT configured (empty)!" }
# ConfBMCDNSDomain $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'144D' -and $_.OI -eq'0'} if (($a.DATA.Type -eq"xsd::string") -and ($a.DATA.InnerText -ne"") ){ DebugOut "$IP - DNS Domain '$($a.DATA.InnerText)'" $ServerDnsDomain = $a.DATA.InnerText } else { DebugOut "$IP - DNS Domain NOT configured (empty)!" }
# ConfBmcDnsNameString $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'2550' -and $_.OI -eq'0'} if (($a.DATA.Type -eq'xsd::string') -and ($a.DATA.InnerText -ne"") ) { DebugOut "$IP - DNS Name '$($a.DATA.InnerText)'" $ServerDnsName = $a.DATA.InnerText } else { DebugOut "$IP - DNS name NOT reported - building from scratch ..." [bool]$DnsNameInvalid = $False
# ConfBMCUseNetworkName $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'1431' -and $_.OI -eq'0'} if ($a.DATA.Type -eq'xsd::integer') { if ($a.DATA.InnerText -eq'1') { DebugOut "$IP - DNS Use BMC Name ..." # ConfBMCNetworkName $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'1430' -and $_.OI -eq'0'} if (($a.DATA.Type -eq'xsd::string') -and ($a.DATA.InnerText -ne"")) { $ServerDnsName = $($a.DATA.InnerText) } } else { # ConfSystemName $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'201' -and $_.OI -eq'0'} if (($a.DATA.Type -eq'xsd::string') -and ($a.DATA.InnerText -ne"")) { $HostName = $($a.DATA.InnerText) if ($HostName.contains( '.' )) { $ServerDnsName = $HostName.Substring( 0, ($HostName.IndexOf('.'))) } else { $ServerDnsName = $HostName } } } } else { $DnsNameInvalid = $True }
# ConfBMCAddSerialNumber $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'1433' -and $_.OI -eq'0'} if ($a.DATA.Type -eq'xsd::integer') { if ($a.DATA.InnerText -eq'1') { DebugOut "$IP - DNS Add Serial ..."
# We need to get the MAC Address of the iRMC, last 3 Bytes are used as serial $Response = DoWebRequest -url ($hostURL + "/report.xml?Item=System/ManagementControllers") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $TimeoutSeconds if ($Response-ne$Null -and $Response.Contains("<Root") ) { try { $xmlCtrl = [xml]( Clean-XmlString -xmlString $Response -endTag "</Root>" ) if ($xmlCtrl-ne$Null -and $xmlCtrl.HasChildNodes ) { [System.Xml.XmlElement]$bmcinst = $xmlCtrl.Root.System.ManagementControllers.iRMC [string]$MacAddress = $bmcInst.MACAddress $ServerDnsName += ($MacAddress.Replace('-','')).SubString(6) } } catch { DebugErr $ERROR_NO_CONFIG_INFORMATION"$IP - Could not process Management Controller Information. Exception=$_" $DnsNameInvalid = $True } } else { DebugWarn $ERROR_NO_CONFIG_INFORMATION"$IP - Management Controller Information not available for MAC address based serial" $DnsNameInvalid = $True } } } else { $DnsNameInvalid = $True }
# ConfBMCAddExtension $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'1434' -and $_.OI -eq'0'} if ($a.DATA.Type -eq'xsd::integer') { if ($a.DATA.InnerText -eq'1') { DebugOut "$IP - DNS Add Extension ..." # ConfBMCNameExtension $a = $xml.CMDSEQ.CMD | where { $_.OE -eq'1432' -and $_.OI -eq'0'} if (($a.DATA.Type -eq"xsd::string") -and ($a.DATA.InnerText -ne"") ){ DebugOut "$IP - DNS Name Extension $($a.DATA.InnerText)" $ServerDnsName += $($a.DATA.InnerText) } } } else { $DnsNameInvalid = $True }
<# Typical IDPROM content Product Information 0600 Product Serial Number YLVT000098 0601 Product Part Number ABN:K1495-VXXX-XX 0608 Product Model PRIMERGY RX2540 M1 060A Product Manufacturer FUJITSU 060B Product Manufacturing Date 2014/07/1617:31:00 060C Product File ID 0 Chassis Information 0100 Chassis Serial Number bbbbbbbb 0101 Chassis Part Number 340C24800011 0108 Chassis Model TX140S2FZ System Board Information 0200 System Board Serial Number 45283645 0201 System Board Part Number S26361-D3279-D11 0203 System Board Version WGS02 GS50 0208 System Board Model D3279 020A System Board Manufacturer FUJITSU 020B System Board Manufacturing Date 2014/08/0803:43:00 #> try { # Product (SCCI Class 6) Information from FRU/IDPROM $a = $fruinst.Class | where { $_.Code -eq"6" } if ($a-ne$Null) { DebugOut "$IP - $($a.GetAttribute('Name')) FRU Information" $b = @($a.Instance.Data.Decoded.String) for($i = 0; $i-lt$b.Count; $i++){ DebugOut "$IP -`t$($b[$i].ValueID) $($b[$i].ValueName) $($b[$i].InnerText)"
if ($b[$i].ValueID -eq"0600") { $ServerSerialNumber = $b[$i].InnerText} if ($b[$i].ValueID -eq"0601") { $ServerPartNumber = $b[$i].InnerText} if ($b[$i].ValueID -eq"0608") { $ServerModel = $b[$i].InnerText} if ($b[$i].ValueID -eq"0609") { $ServerManufacturer = $b[$i].InnerText} # Older Firmware 7.50F (Vendor vs. Manufacturer) if ($b[$i].ValueID -eq"060A") { $ServerManufacturer = $b[$i].InnerText} if ($b[$i].ValueID -eq"060B") { $ServerManufacturingDate = $b[$i].InnerText} } }
# Chassis (SCCI Class 1) Information from FRU/IDPROM $a = $fruinst.Class | where { $_.Code -eq"1" } if ($a-ne$Null) { DebugOut "$IP - $($a.GetAttribute('Name')) FRU Information" $b = @($a.Instance.Data.Decoded.String) for($i = 0; $i-lt$b.Count; $i++){ DebugOut "$IP -`t$($b[$i].ValueID) $($b[$i].ValueName) $($b[$i].InnerText)"
if ($b[$i].ValueID -eq"0100") { $ChassisSerialNumber = $b[$i].InnerText} if ($b[$i].ValueID -eq"0101") { $ChassisPartNumber = $b[$i].InnerText} if ($b[$i].ValueID -eq"0108") { $ChassisModel = $b[$i].InnerText} } }
# Extract Systemboard (SCCI Class 2) Information from FRU/IDPROM $a = $fruinst.Class | where { $_.Code -eq"2" } if ($a-ne$Null) { $b = @($a.Instance.Data.Decoded.String)
# We have all information we need, create discovered Instances $bmcInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice']$") $bmcInstance.AddProperty("$MPElement[Name='OOB!Microsoft.SystemCenter.OOB.WSManDevice']/IP$", $IP) $bmcInstance.AddProperty("$MPElement[Name='System!System.Entity']/DisplayName$", $IP) $discoveryData.AddInstance($bmcInstance)
if ($ServerModel-ne"N/A") { if ($ServerModel-match"PRIMERGY BX" ) { $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.BXServer']$") } elseif ($ServerModel-match"PRIMERGY CX" ) { $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.CXServer']$") } elseif ($ServerModel-match"PRIMERGY RX" ) { $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.RXServer']$") } elseif ($ServerModel-match"PRIMERGY SX" ) { $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.SXServer']$") } elseif ($ServerModel-match"PRIMERGY TX" ) { $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.TXServer']$") } else { # Any other: use generic XX Type $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.XXServer']$") } } else { DebugOut "$IP - Could not determine Server Model!" $serverInstance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.XXServer']$") }
$physicalMemory = 'N/A' if ($meminst-ne$Null -and $meminst.HasChildNodes) { if ($meminst.Installed -ne$Null -and $meminst.Installed -ne0) { # We do have a valid total, so the modules will have information as well DebugOut "$IP - Total installed memory is $($meminst.Installed)" try { [int]$totalMemory = $meminst.Installed # in MB [string]$physicalMemory = '' if ($totalMemory-lt1024) { $physicalMemory = "$($totalMemory) MB" } else { if (($totalMemory % 1024) -eq0) { $physicalMemory = "{0:d} GB" -f ($totalMemory/1024) } else { $physicalMemory = "{0:f} GB" -f ($totalMemory/1024) } } $serverInstance.AddProperty("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.Server']/PhysicalMemory$", $physicalMemory) # actual value DebugOut "$IP - Physical Memory: $($physicalMemory)"
# Default to 'N/A' in case the iRMC has lost this information and needs a server reboot/POST $Model = 'N/A' $Manufacturer = 'N/A' $NumLogicalCores = 'N/A' $NumPhysicalCores = 'N/A' $MaxClockSpeed = 'N/A'
# Group hosts Non Present component $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroupHostsProcessorNotPresent']$") $relationship.Source = $cpuGroupInst $relationship.Target = $instance $discoveryData.AddInstance($relationship) } } } } else { # Every Server has at least one active CPU or it won't boot. # Mark Discovery as incomplete if we don't have any CPU information $discoveryData.IsSnapshot = $False } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - Processor Discovery: Exception=$_" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Fujitsu Out-Of-Band Server Processor Discovery: Exception=$_ ") $discoveryData.IsSnapshot = $False }
try { # Memory if ($meminst-ne$Null -and $meminst.HasChildNodes) {
# HealthCollection Class Properties: Get List of devices # try to match other MP's Device and Device Info if ($meminst.Installed -ne$Null -and $meminst.Installed -ne0){ # We do have a valid total, so the modules will have information as well DebugOut "$IP - Total installed memory is $($meminst.Installed)" $Devices = "" $DevicesInfo = "" try { [int]$totalMemory = $meminst.Installed # in MB if ($totalMemory-lt1024) { $Devices = "Overall Memory: $($totalMemory) MB" } else { if (($totalMemory % 1024) -eq0) { $Devices = "Overall Memory: {0:d} GB" -f ($totalMemory/1024) } else { $Devices = "Overall Memory: {0:f} GB" -f ($totalMemory/1024) } } } catch {}
# Build Device Info (list and count of size XX memory modules) $index = 0 $mem_types = @{} foreach ($elemin$meminst.Modules.Module) { $DisplayName = $elem.Name $Status = $elem.Status.GetAttribute("Description") if ($Status-ne"empty" -and $Status-ne"hidden") { if ($elem.ConfigStatus -ne$Null) { $ConfigStatus= $elem.ConfigStatus.GetAttribute("Description") } else { $ConfigStatus = 'N/A' }
if ($ConfigStatus-ne'Not usable') { if (($elem.Size.InnerText -ne$Null) -and ($elem.Size.Unit -ne$Null)) { # Old Version with Unit attribute $MemSize = $elem.Size.InnerText +" " +$elem.Size.Unit } else { [int]$size = [int]$elem.Size if ($size-lt1024) { $MemSize = [string]$elem.Size +" MB" } else { $MemSize = [string]($size/1024) +" GB" } } } else { $MemSize = $ConfigStatus# also count/list 'Not usable' modules }
if ($Status-ne"empty" -and $Status-ne"hidden") { if ($elem.ConfigStatus -ne$Null) { $ConfigStatus= $elem.ConfigStatus.GetAttribute("Description") } else { $ConfigStatus = 'N/A' }
if ($ConfigStatus-ne'Not usable') { if ($elem.BusFrequency -ne$Null) { $BusFrequency = [string]($elem.BusFrequency.InnerText +" " +$elem.BusFrequency.Unit) } if (($elem.Size -ne$Null) -and ($elem.Size.Unit -ne$Null)) { # Old Firmware Version with Unit attribute $MemSize = $elem.Size.InnerText +" " +$elem.Size.Unit } else { [int]$size = [int]$elem.Size if ($size-lt1024) { $MemSize = [string]$elem.Size +" MByte" } else { $MemSize = [string]($size/1024) +" GByte" } } if ( ($elem.Type-ne $Null) -and ($elem.SPD.ModuleType -ne$Null) ) { $MemType = $elem.Type +" / " + $elem.SPD.ModuleType } else { $MemType = $elem.Type }
# Note: The JEDEC Spec does not specify how the serial number bytes has to be interpreted (as integer or hex or proprietary). # Match the iRMC Web Interface which interprets this as unsigned integer. #$MemSerialNumber = $elem.SPD.ModuleSerialNumber.AsString # hex string version if ($elem.SPD.ModuleSerialNumber -ne$Null) { $MemSerialNumber = $elem.SPD.ModuleSerialNumber.InnerText if ($MemSerialNumber.EndsWith('l')) { # Work around for a formatting bug in some iRMC Firmware versions (%ul instead of %lu) $MemSerialNumber = $MemSerialNumber.SubString(0, $MemSerialNumber.Length -1) }
if ($MemSerialNumber.StartsWith('-')) { # Work around for another formatting bug in some iRMC Firmware versions (%d instead of %u) try { [UInt32]$uVal = [Convert]::ToUInt32($elem.SPD.ModuleSerialNumber.AsString, 16) $MemSerialNumber = [string]$uVal } catch { $MemSerialNumber ='N/A' } } }
# Memory Group hosts not usable memory $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupHostsMemoryNotUsable']$") $relationship.Source = $memGroupInst $relationship.Target = $instance $discoveryData.AddInstance($relationship)
}
$index++
} else { # TODO: currently do not report empty memory modules (can be up to 128 Modules) } }
# No valid module information detected (BMC has not gotten any information from BIOS during POST) if ($index-eq0){ LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_MEMORY_INFORMATION_NOT_INITIALIZED -Message ("Memory Information not initialized - please reboot the Fujitsu Out-Of-Band Server") DebugWarn "$IP - Memory Information not initialized - please reboot the Fujitsu Out-Of-Band Server" } } else { # Every Server has at least one Memory Module or it won't boot. # Mark Discovery as incomplete if we don't have any Memory information $discoveryData.IsSnapshot = $False } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - Memory Discovery: Exception=$_" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Fujitsu Out-Of-Band Server Memory Discovery: Exception=$_ ") $discoveryData.IsSnapshot = $False }
try { # Fans if ($faninst-ne$Null -and $faninst.Count -ne0) { DebugOut "$IP - has $($fanInst.Count) Fans" # Fan Group $groupName = $FanGroupName $fanGroupInst = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroup']$") $fanGroupInst.AddProperty("$MPElement[Name='OOB!Microsoft.SystemCenter.OOB.WSManDevice']/IP$", $IP) # host $fanGroupInst.AddProperty("$MPElement[Name='FTSLIB!Fujitsu.ServerView.Server']/NetworkName$", $NetworkName) # key of hosting object
# HealthCollection Class Properties: Get List of devices $Devices = "" $DevicesInfo = "" $index = 0 foreach ($elemin$faninst.Fan) { $DisplayName = $elem.Name $Status = $elem.Status.GetAttribute("Description") if ($Status-ne"not present") { $DevicesInfo += "$($index): '$($DisplayName)'; " } else { if ($IncludeNotPresentFans-eq$True) { $DevicesInfo += "$($index): '$($DisplayName)' Fan not installed; " } } $index++ } # Match other MP's Device Info $Devices = "Number of Fan Devices: $($index)"
# Fan Group hosted by Server $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsFanGroup']$") $relationship.Source = $serverInstance $relationship.Target = $fanGroupInst $discoveryData.AddInstance($relationship)
# Fan Group hosts Fan $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroupHostsFan']$") $relationship.Source = $fanGroupInst $relationship.Target = $instance $discoveryData.AddInstance($relationship)
} else { if ($IncludeNotPresentFans-eq$True) { $instance = $discoveryData.CreateClassInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.FanNotPresent']$")
# Power Supply Group hosted by Server $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsPowerSupplyGroup']$") $relationship.Source = $serverInstance $relationship.Target = $psuGroupInst $discoveryData.AddInstance($relationship)
# Server hosts other component status group $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsOtherComponentStatusGroup']$") $relationship.Source = $serverInstance $relationship.Target = $OtherComponentsGroupInstance $discoveryData.AddInstance($relationship)
# Server/ Other Component Group hosts component status group $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsTemperatureComponentGroup']$") $relationship.Source = $serverInstance $relationship.Target = $componentGroupInstance $discoveryData.AddInstance($relationship)
# Server / Other Component Group hosts component status group $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsVoltageComponentGroup']$") $relationship.Source = $serverInstance $relationship.Target = $componentGroupInstance $discoveryData.AddInstance($relationship)
# Additional Mainboard / Voltage Group Relationship $relationship = $discoveryData.CreateRelationshipInstance("$MPElement[Name='Fujitsu.Servers.PRIMERGY.OutOfBand.MainboardReferencesVoltageComponentGroup']$") $relationship.Source = $mainBoardInstance $relationship.Target = $componentGroupInstance $discoveryData.AddInstance($relationship)
# This script part contains helper functions to perform web based requests # and is embedded into the final script via Visual Studio Authoring Extensions
[int]$ERROR_SSL_CA_ERROR = 8399# is not a prime [int]$ERROR_SSL_CN_ERROR = 8499# is not a prime
[int]$ERROR_BMC_NO_RESPONSE = 8599# is a prime [int]$ERROR_BMC_NO_ACCESS = 8699# is a prime [int]$ERROR_BMC_TIMEOUT = 8799# is not a prime [int]$ERROR_BMC_BUSY = 8999# is a prime
$webRequest = [System.Net.WebRequest]::Create($url) if ($Credentials-ne$Null) { if ($AuthType-eq"Basic") { # Do not wait for the 401 response, send the credentials with the initial request $AuthData = [Convert]::ToBase64String([Text.Encoding]::Default.GetBytes($Credentials.UserName + ':' + $Credentials.Password)); $webRequest.Headers.Add('Authorization', "Basic $AuthData")
# Check for SSL related errors if ($global:SSL_CN_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CN_ERROR -Message ("Certificate Common Name (CN) Mismatch") DebugOut "$IP - $url Certificate Name (CN) Mismatch ..." return } elseif ($global:SSL_CA_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CA_ERROR -Message ("Certificate Authority (CA) or Certificate Chain Error") DebugOut "$IP - $url Certificate Authority (CA) or Chain Error ..." return } elseif ($global:SSL_NO_CERT_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_ERROR -Message ("No Certificate present") DebugOut "$IP - $url No Certificate present ..." return }
# no response (object), check for the timeout value. # If the connection gets closed during early send/receive, # this is typically within a few seconds, otherwise the configured timeout will have expired if ($resTime-ne$Null -and [int]$resTime.TotalSeconds -lt5) { [int]$retryDelay = (($retries +1) * $DEFAULT_RETRY_INCREMENT) # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response / connection closed ") if ($errorMsg-ne$Null) { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds ($errorMsg)"} else { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds (no details available)"} if ($innerException-ne$Null) { DebugWarn "InnerException:`r`n$innerException" } if ($stackTrace-ne$Null ) { DebugWarn "Stack Trace:`r`n$stackTrace" } Start-Sleep -Seconds $retryDelay } else { # Note: do no report actual timeout seconds here, or alert suppression will not fully work due to different text LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_TIMEOUT -Message ("'$url' no response. Timeout was $RequestTimeout seconds") DebugOut "$IP - '$url' no response within $($resTime.TotalSeconds) seconds. Timeout was $RequestTimeout seconds" return } } } catch { # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("'$url' generic Exception=$_") DebugWarn "$IP - '$url' generic Exception=$_" } } LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response after $retries retries (last error: $errorMsg)") DebugOut "$IP - '$url' no response after $retries retries (last error: $errorMsg)" }
# This script part contains helper functions to perform various logging activities # and is embedded into the final script via Visual Studio Authoring Extensions
# Log an event into the registry, Source will be 'Health Service Script' # See https://msdn.microsoft.com/en-us/library/bb437630.aspx [int]$WARNING_LEVEL = 2 [int]$ERROR_LEVEL = 1 [int]$INFO_LEVEL = 0
$LOGFILE_VERSION = 8.1.0.0
# Generic version Function RaiseEvent { Param ( [parameter(Mandatory=$true)] [string]$EventSource = "Fujitsu Out-Of-Band", [parameter(Mandatory=$true)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message )
# Backwards compatible wrapper Function LogScriptEvent { Param ( [parameter(Mandatory=$true)] [ValidateRange(0,2)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message ) # Note: Log will be written always with Event Source 'Health Service Script' if ($ScriptApi-ne$Null) { # Note: do not use actual script name to consolidate Alert Suppression from parallel scripts $ScriptApi.LogScriptEvent("Fujitsu Out-Of-Band", $EventNumber, $EventLevel, $Message) # $ScriptApi.LogScriptEvent($PoShScriptName, $EventNumber, $EventLevel, $Message) } }
# -------------------------------------------------------------------------- # Global variables = variables, which are changed in different functions ... # ... and the changed value shall be available in the calling function # -------------------------------------------------------------------------- $global:DebugMode = $False $global:DebugFile = $False $global:OverWrite = $True $global:DebugHosts = "" $global:DebugForHost = "$False" $global:ErrFilePrefix = "ERRORTrace" $global:WarnFilePrefix = "WARNINGTrace" $global:LogTargetName = "" $global:LogFilePrefix = "" $global:LogFilePath = "$Env:TEMP\SVISCOM\SVISCOM-OutOfBand" $global:LogFileName = "$LogFilePath\$($LogFilePrefix).log"
# create the target directory, if it does not exist if ( ! (Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null } if (Test-Path -Path $global:LogFilePath) { $pathOK = $True }
if (($pathOK-eq$True) -and ($fileOK-eq$False)) { # we write a new SVISCOM-OutOfBand.xm_ file every time the MP is changed to make sure all # INI-Values are documented for use by the customer if anything changes. if (Test-Path -Path $Xm_FileName) { Remove-Item -Path $Xm_FileName -Force | Out-Null } #Create xm_ file New-Item -Path $Xm_FileName -ItemType File | Out-Null
Add-Content -Path $Xm_FileName -Value @" <$SectionRoot> <!-- $SVISCOMLogXmlName Debug XML file Version $LOGFILE_VERSION
With this file logging for PowerShell scripts within the - Fujitsu Out-Of-Band Management Pack and - Optional Extension Management Packs for the Fujitsu Out-Of-Band Management Pack can be enabled.
Rename the file type from '.xm_' to '.xml' to enable reading this file.
Note: You have to enable debug for a script and also select the server in the '<$TagHostsDiscovery>' or '<$TagHostsMonitoring>' section to generate traces (see below).
The following sections specify for which PowerShell scripts the traces will be generated; Each of the sections represents a single PowerShell script.
'<$TagDebugMode>' enables logging (yes) or disables logging (no) '<$TagOverWrite>' defines continuous logging (no) or single script run logging (yes) --> <!-- DISCOVERIES --> <!-- The following section enables trace files for the Out-Of-Band Server discovery script --> <$SectionServerDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionServerDiscovery> <!-- The following section enables trace files for the SMASH device discovery script --> <$SectionSmashDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionSmashDiscovery> <!-- The following section enables trace files for the RAID discovery script --> <$SectionRaidDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidDiscovery> <!-- The following section enables trace files for the Performance Monitor discovery script --> <$SectionPerformanceDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceDiscovery>
<!-- MONITORS --> <!-- The following section enables trace files for the main server Hardware Components (CPU/Memory/Fan/PowerSupply) monitoring script --> <$SectionHardwareComponentMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionHardwareComponentMonitor> <!-- The following section enables trace files for the 'Component Status' monitoring script --> <$SectionComponentStatusMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionComponentStatusMonitor> <!-- The following section enables trace files for the RAID monitoring script --> <$SectionRaidMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidMonitor> <!-- The following section enables trace files for the Performance monitoring script --> <$SectionPerformanceMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceMonitor>
<!-- The following sections specify for which servers the traces will be generated:
In the '<$TagHostsDiscovery>' and '<$TagHostsMonitoring>' sections single or multiple servers can be specified for verbose debug output during the discovery and/or during monitoring.
Use '<$TagHostsDiscovery>' for selecting hosts for the discovery trace. Use '<$TagHostsMonitoring>' for selecting hosts for the monitoring trace.
Use 'all' (without quote signs) for all Fujitsu Out-Of-Band Servers monitored by SCOM. Use a single IP address or a comma separated list to select multiple single servers Example: <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>192.168.1.100,192.168.1.101,192.168.1.102</$TagHostsMonitoring>
will generate discovery traces for all Fujitsu Out-Of-Band Servers and will generate monitoring traces only for servers with the IP address 192.168.1.100 192.168.1.101 and 192.168.1.102 --> <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>all</$TagHostsMonitoring> </$SectionRoot> "@ } }
if (Test-Path -Path $global:LogFilePath) { if (Test-Path -Path $XmlFileName) { [xml]$xmlfile = Get-Content$XmlFileName
if ($xmlfile.$SectionRoot.$section.$TagDebugMode-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagDebugMode).ToUpper() -eq"YES") { $global:DebugMode = $True $global:DebugFile = $True } }
if ($xmlfile.$SectionRoot.$section.$TagOverWrite-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagOverWrite).ToUpper() -eq"NO") { $global:OverWrite = $False } }
if ($xmlfile.$SectionRoot.$HostTag-ne$null) { $global:DebugHosts = $($xmlfile.$SectionRoot.$HostTag).ToLower() }
# Check if DEBUG shall run for this server. # There are two possibilities to check: "all" server DEBUG is on or this server is in the list. if ($global:DebugHosts-eq"all") { $global:DebugForHost = $True } else { # Check if this host is in the list of DebugHosts $ListOfHosts = $($global:DebugHosts).split(',') DebugOut "Searching for host: $ServerName" DebugOut "in list of DebugHosts: $global:DebugHosts"
if ($ServerName.ToLower() -in$ListOfHosts) { $global:DebugForHost = $True } }
} # else file does not exist } # else directory does not exist }
Function CreateLogFile { # For some reason checking for "$True" with "if ($global:a -and $global:b)" is not evaluated correctly!!! # It works OK in a test with a simple PS script ... no idea why ... Thus we use: if ($global:DebugForHost-eq$True) { if ($global:DebugFile-eq$True) { # Create the target directory, if it does not exist if (!(Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null }
# Check if file exists and delete if it does and OverWrite is set to TRUE if (Test-Path -Path $global:LogFileName) { DebugOut "" DebugOut "Log file already exists at: $global:LogFileName" if ($global:OverWrite-eq$True) { Remove-Item -Path $global:LogFileName -Force | Out-Null } } # If the file has just been removed (OverWrite = YES) or the file does not exist: create it if (!(Test-Path -Path $global:LogFileName)) { #Create log file New-Item -Path $global:LogFileName -ItemType File | Out-Null }
Main </Script></ScriptBody> <!-- Note: Generating the full System Report used for the discovery can take quite long, especially when partial System Report is not supported and RAID data is present --> <TimeoutSeconds>600</TimeoutSeconds> <StrictErrorHandling>false</StrictErrorHandling> <!-- Out-Of-Band Server iRMC Access Parameters --> <IP>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/IP$</IP> <Port>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/Port$</Port> <UserName>$RunAs[Name='OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile']/UserName$</UserName> <Password>$RunAs[Name='OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile']/Password$</Password> <SkipCACheck>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <!-- Additional Discovery Script Parameters --> <UseDnsNameAsNetworkName>false</UseDnsNameAsNetworkName> <UseDnsNameAsDisplayName>true</UseDnsNameAsDisplayName> <IncludeNotPresentProcessors>true</IncludeNotPresentProcessors> <IncludeNotPresentFans>true</IncludeNotPresentFans> <IncludeNotPresentPowerSupplies>true</IncludeNotPresentPowerSupplies> </DataSource> </Discovery> <DiscoveryID="Fujitsu.Servers.PRIMERGY.OutOfBand.SmashDeviceDiscovery"Target="OOB!Microsoft.SystemCenter.OOB.WSManDevice"Enabled="true"ConfirmDelivery="false"Remotable="true"Priority="Normal"Comment="Discovers a Microsoft SMASH device with correct properties"> <Category>Discovery</Category> <DiscoveryTypes> <DiscoveryClassTypeID="OOB!Microsoft.SystemCenter.OOB.SMASHDevice"> <PropertyTypeID="OOB!Microsoft.SystemCenter.OOB.SMASHDevice"PropertyID="Name" /> <PropertyTypeID="OOB!Microsoft.SystemCenter.OOB.SMASHDevice"PropertyID="SMBIOSGuid" /> <PropertyTypeID="OOB!Microsoft.SystemCenter.OOB.SMASHDevice"PropertyID="ServiceTag" /> <PropertyTypeID="OOB!Microsoft.SystemCenter.OOB.WSManDevice"PropertyID="IP" /> <PropertyTypeID="System!System.Entity"PropertyID="DisplayName" /> </DiscoveryClass> </DiscoveryTypes> <DataSourceID="DS"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.UniqueScheduled.PowerShell.DiscoveryProvider"> <!-- Note: default is every 12 hours --> <IntervalSeconds>43200</IntervalSeconds> <SyncTime>1:45</SyncTime> <!-- Note: spread discovery over 15 minutes --> <SpreadInitializationOverInterval>900</SpreadInitializationOverInterval> <ScriptName>SmashDeviceDiscovery.ps1</ScriptName> <ScriptBody><Script> ################################################################################## # # # NOTICE # # # # COPYRIGHT 2014 - 2016 Fujitsu Technology Solutions # # ALL RIGHTS RESERVED # # # # This computer program is CONFIDENTIAL and contains TRADE SECRETS of # # Fujitsu Technology Solutions. The receipt or possession of this program does # # not convey any rights to reproduce or disclose its contents, or to # # manufacture, use, or sell anything that it may describe, in whole or # # in part, without the specific written consent of Fujitsu Technology Solutions. # # Any reproduction of this program without the express written consent # # of Fujitsu Technology Solutions is a violation of the copyright laws and may # # subject you to civil liability and criminal prosecution. # # # ##################################################################################
# Note: The original Microsoft SMASH discovery cannot retrieve UUID and Asset Tag (Service Tag) from CIM via winrm due to different namespace # Create a SMASH device with correct values if we have these information
# set CONSTANT variables (can not be changed): set-variable -name PoShScriptName -value "SmashDeviceDiscovery.ps1" -option constant
[int]$SCRIPT_EVENT_NUMBER = 8117# a prime [int]$ERROR_NO_CONFIG_INFORMATION = 8123# a prime
$ServerUuid = 'N/A'# from the HP-SIM Integration data $ServerAssetTag = 'N/A'# from exported configuration
# Associated ConfigSpace Value Id symbolic names (hexadecimal) $ConfBMCAssetTag = '210'# System Asset Tag: OI=0
# we need to make multiple authenticated HTTP requests... $hostURL = "https://" + $IP + ":" + $Port [System.Net.NetworkCredential]$NetworkCredential = New-Object System.Net.NetworkCredential ($username, $password) [System.Net.ServicePointManager]::DefaultConnectionLimit = 1000
[bool]$global:iRMCDetected = $False
[xml]$xml = New-Object XML
# Strip any potential garbage at the and of the XML string Function Clean-XmlString ([string]$xmlString, [string]$endTag) { if ($xmlString.contains( $endTag )) { $xmlString.TrimEnd( $xmlString.Substring( ($xmlString.IndexOf($endTag) +$endTag.Length) )) } else { $xmlString } }
############################################################################################# # Get the Asset Tag from the iRMC Configuration (Note: no need to read if we have no UUID) if ($ServerUuid-ne'N/A') { try { $Response = DoWebRequest -url ($hostURL + "/iRMC_Settings.pre?SAVE_ALL=1") -Method "GET" -Credentials $NetworkCredential -RequestTimeout $DEFAULT_REQUEST_TIMEOUT if ($Response-ne$Null -and $Response.Contains("<CMDSEQ") ) { try { $xml = [xml]( Clean-XmlString -xmlString $Response -endTag "</CMDSEQ>" ) if ($xml-ne$Null -and $xml.HasChildNodes ) { # ConfBMCAssetTag $a = $xml.CMDSEQ.CMD | where { $_.OE -eq$ConfBMCAssetTag -and $_.OI -eq'0'} if (($a.DATA.Type -eq"xsd::string") -and ($a.DATA.InnerText -ne"") ){ DebugOut "$IP - Asset Tag '$($a.DATA.InnerText)'" $ServerAssetTag = $a.DATA.InnerText } else { DebugOut "$IP - Asset Tag NOT configured (empty)!" } } } catch { # DebugErr $ERROR_NO_CONFIG_INFORMATION "$IP - Could not process iRMC Configuration information. Exception=$_" DebugErr $ERROR_NO_CONFIG_INFORMATION"$IP - Could not process iRMC Configuration information." $discoveryData.IsSnapshot = $False } } else { LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_NO_CONFIG_INFORMATION -Message ("iRMC Configuration Information not available") DebugErr $ERROR_NO_CONFIG_INFORMATION"$IP - iRMC Configuration Information not available" $discoveryData.IsSnapshot = $False } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - iRMC Configuration Discovery: Exception=$_" LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("Fujitsu Out-Of-Band Configuration Discovery: Exception=$_ ") $discoveryData.IsSnapshot = $False } }
if (($ServerUuid-ne'N/A') -and ($ServerAssetTag-ne'N/A')) { DebugOut "$IP - Creating SMASH device with UUID=$($ServerUuid) and AssetTag=$($ServerAssetTag)"
$smashInstance.AddProperty("$MPElement[Name='System!System.Entity']/DisplayName$", $IP) $discoveryData.AddInstance($smashInstance) } else { # Check if there is already an existing SMASH object for this discovery. # If so, mark discovery incomplete
$discoveryData.IsSnapshot = $True# default to not found ... try { $MyObj = Get-SCOMClass -Name 'Microsoft.SystemCenter.OOB.SMASHDevice' | Get-SCOMClassInstance | Where {$_.'[Microsoft.SystemCenter.OOB.WSManDevice].IP'.Value -eq$IP} if ($MyObj-ne$Null) { DebugOut "$IP - Found existing SMASH object - marking discovery incomplete..." $discoveryData.IsSnapshot = $False } else { DebugOut "$IP - NOT found as existing SMASH object - giving up" } } catch { DebugErr $SCRIPT_EVENT_NUMBER"$IP - Could not determine existing object. Exception: $_" }
}
DebugOut "$IP - Finished discovery of Microsoft SMASH device for Fujitsu Out-Of-Band Server" $discoveryData }
# This script part contains helper functions to perform web based requests # and is embedded into the final script via Visual Studio Authoring Extensions
[int]$ERROR_SSL_CA_ERROR = 8399# is not a prime [int]$ERROR_SSL_CN_ERROR = 8499# is not a prime
[int]$ERROR_BMC_NO_RESPONSE = 8599# is a prime [int]$ERROR_BMC_NO_ACCESS = 8699# is a prime [int]$ERROR_BMC_TIMEOUT = 8799# is not a prime [int]$ERROR_BMC_BUSY = 8999# is a prime
$webRequest = [System.Net.WebRequest]::Create($url) if ($Credentials-ne$Null) { if ($AuthType-eq"Basic") { # Do not wait for the 401 response, send the credentials with the initial request $AuthData = [Convert]::ToBase64String([Text.Encoding]::Default.GetBytes($Credentials.UserName + ':' + $Credentials.Password)); $webRequest.Headers.Add('Authorization', "Basic $AuthData")
# Check for SSL related errors if ($global:SSL_CN_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CN_ERROR -Message ("Certificate Common Name (CN) Mismatch") DebugOut "$IP - $url Certificate Name (CN) Mismatch ..." return } elseif ($global:SSL_CA_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_CA_ERROR -Message ("Certificate Authority (CA) or Certificate Chain Error") DebugOut "$IP - $url Certificate Authority (CA) or Chain Error ..." return } elseif ($global:SSL_NO_CERT_ERROR-eq$True) { LogScriptEventWithEventSource -EventSource $IP -EventLevel $INFO_LEVEL -EventNumber $ERROR_SSL_ERROR -Message ("No Certificate present") DebugOut "$IP - $url No Certificate present ..." return }
# no response (object), check for the timeout value. # If the connection gets closed during early send/receive, # this is typically within a few seconds, otherwise the configured timeout will have expired if ($resTime-ne$Null -and [int]$resTime.TotalSeconds -lt5) { [int]$retryDelay = (($retries +1) * $DEFAULT_RETRY_INCREMENT) # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response / connection closed ") if ($errorMsg-ne$Null) { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds ($errorMsg)"} else { DebugWarn "$IP - '$url' no response / connection closed within $($resTime.TotalSeconds) seconds - will retry in $retryDelay seconds (no details available)"} if ($innerException-ne$Null) { DebugWarn "InnerException:`r`n$innerException" } if ($stackTrace-ne$Null ) { DebugWarn "Stack Trace:`r`n$stackTrace" } Start-Sleep -Seconds $retryDelay } else { # Note: do no report actual timeout seconds here, or alert suppression will not fully work due to different text LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_TIMEOUT -Message ("'$url' no response. Timeout was $RequestTimeout seconds") DebugOut "$IP - '$url' no response within $($resTime.TotalSeconds) seconds. Timeout was $RequestTimeout seconds" return } } } catch { # LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $SCRIPT_EVENT_NUMBER -Message ("'$url' generic Exception=$_") DebugWarn "$IP - '$url' generic Exception=$_" } } LogScriptEventWithEventSource -EventSource $IP -EventLevel $WARNING_LEVEL -EventNumber $ERROR_BMC_NO_RESPONSE -Message ("'$url' no response after $retries retries (last error: $errorMsg)") DebugOut "$IP - '$url' no response after $retries retries (last error: $errorMsg)" }
# This script part contains helper functions to perform various logging activities # and is embedded into the final script via Visual Studio Authoring Extensions
# Log an event into the registry, Source will be 'Health Service Script' # See https://msdn.microsoft.com/en-us/library/bb437630.aspx [int]$WARNING_LEVEL = 2 [int]$ERROR_LEVEL = 1 [int]$INFO_LEVEL = 0
$LOGFILE_VERSION = 8.1.0.0
# Generic version Function RaiseEvent { Param ( [parameter(Mandatory=$true)] [string]$EventSource = "Fujitsu Out-Of-Band", [parameter(Mandatory=$true)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message )
# Backwards compatible wrapper Function LogScriptEvent { Param ( [parameter(Mandatory=$true)] [ValidateRange(0,2)] [int]$EventLevel, [parameter(Mandatory=$true)] [int]$EventNumber, [parameter(Mandatory=$true)] [string]$Message ) # Note: Log will be written always with Event Source 'Health Service Script' if ($ScriptApi-ne$Null) { # Note: do not use actual script name to consolidate Alert Suppression from parallel scripts $ScriptApi.LogScriptEvent("Fujitsu Out-Of-Band", $EventNumber, $EventLevel, $Message) # $ScriptApi.LogScriptEvent($PoShScriptName, $EventNumber, $EventLevel, $Message) } }
# -------------------------------------------------------------------------- # Global variables = variables, which are changed in different functions ... # ... and the changed value shall be available in the calling function # -------------------------------------------------------------------------- $global:DebugMode = $False $global:DebugFile = $False $global:OverWrite = $True $global:DebugHosts = "" $global:DebugForHost = "$False" $global:ErrFilePrefix = "ERRORTrace" $global:WarnFilePrefix = "WARNINGTrace" $global:LogTargetName = "" $global:LogFilePrefix = "" $global:LogFilePath = "$Env:TEMP\SVISCOM\SVISCOM-OutOfBand" $global:LogFileName = "$LogFilePath\$($LogFilePrefix).log"
# create the target directory, if it does not exist if ( ! (Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null } if (Test-Path -Path $global:LogFilePath) { $pathOK = $True }
if (($pathOK-eq$True) -and ($fileOK-eq$False)) { # we write a new SVISCOM-OutOfBand.xm_ file every time the MP is changed to make sure all # INI-Values are documented for use by the customer if anything changes. if (Test-Path -Path $Xm_FileName) { Remove-Item -Path $Xm_FileName -Force | Out-Null } #Create xm_ file New-Item -Path $Xm_FileName -ItemType File | Out-Null
Add-Content -Path $Xm_FileName -Value @" <$SectionRoot> <!-- $SVISCOMLogXmlName Debug XML file Version $LOGFILE_VERSION
With this file logging for PowerShell scripts within the - Fujitsu Out-Of-Band Management Pack and - Optional Extension Management Packs for the Fujitsu Out-Of-Band Management Pack can be enabled.
Rename the file type from '.xm_' to '.xml' to enable reading this file.
Note: You have to enable debug for a script and also select the server in the '<$TagHostsDiscovery>' or '<$TagHostsMonitoring>' section to generate traces (see below).
The following sections specify for which PowerShell scripts the traces will be generated; Each of the sections represents a single PowerShell script.
'<$TagDebugMode>' enables logging (yes) or disables logging (no) '<$TagOverWrite>' defines continuous logging (no) or single script run logging (yes) --> <!-- DISCOVERIES --> <!-- The following section enables trace files for the Out-Of-Band Server discovery script --> <$SectionServerDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionServerDiscovery> <!-- The following section enables trace files for the SMASH device discovery script --> <$SectionSmashDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionSmashDiscovery> <!-- The following section enables trace files for the RAID discovery script --> <$SectionRaidDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidDiscovery> <!-- The following section enables trace files for the Performance Monitor discovery script --> <$SectionPerformanceDiscovery> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceDiscovery>
<!-- MONITORS --> <!-- The following section enables trace files for the main server Hardware Components (CPU/Memory/Fan/PowerSupply) monitoring script --> <$SectionHardwareComponentMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionHardwareComponentMonitor> <!-- The following section enables trace files for the 'Component Status' monitoring script --> <$SectionComponentStatusMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionComponentStatusMonitor> <!-- The following section enables trace files for the RAID monitoring script --> <$SectionRaidMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionRaidMonitor> <!-- The following section enables trace files for the Performance monitoring script --> <$SectionPerformanceMonitor> <$TagDebugMode>yes</$TagDebugMode> <$TagOverWrite>no</$TagOverWrite> </$SectionPerformanceMonitor>
<!-- The following sections specify for which servers the traces will be generated:
In the '<$TagHostsDiscovery>' and '<$TagHostsMonitoring>' sections single or multiple servers can be specified for verbose debug output during the discovery and/or during monitoring.
Use '<$TagHostsDiscovery>' for selecting hosts for the discovery trace. Use '<$TagHostsMonitoring>' for selecting hosts for the monitoring trace.
Use 'all' (without quote signs) for all Fujitsu Out-Of-Band Servers monitored by SCOM. Use a single IP address or a comma separated list to select multiple single servers Example: <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>192.168.1.100,192.168.1.101,192.168.1.102</$TagHostsMonitoring>
will generate discovery traces for all Fujitsu Out-Of-Band Servers and will generate monitoring traces only for servers with the IP address 192.168.1.100 192.168.1.101 and 192.168.1.102 --> <$TagHostsDiscovery>all</$TagHostsDiscovery> <$TagHostsMonitoring>all</$TagHostsMonitoring> </$SectionRoot> "@ } }
if (Test-Path -Path $global:LogFilePath) { if (Test-Path -Path $XmlFileName) { [xml]$xmlfile = Get-Content$XmlFileName
if ($xmlfile.$SectionRoot.$section.$TagDebugMode-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagDebugMode).ToUpper() -eq"YES") { $global:DebugMode = $True $global:DebugFile = $True } }
if ($xmlfile.$SectionRoot.$section.$TagOverWrite-ne$null) { if ($($xmlfile.$SectionRoot.$Section.$TagOverWrite).ToUpper() -eq"NO") { $global:OverWrite = $False } }
if ($xmlfile.$SectionRoot.$HostTag-ne$null) { $global:DebugHosts = $($xmlfile.$SectionRoot.$HostTag).ToLower() }
# Check if DEBUG shall run for this server. # There are two possibilities to check: "all" server DEBUG is on or this server is in the list. if ($global:DebugHosts-eq"all") { $global:DebugForHost = $True } else { # Check if this host is in the list of DebugHosts $ListOfHosts = $($global:DebugHosts).split(',') DebugOut "Searching for host: $ServerName" DebugOut "in list of DebugHosts: $global:DebugHosts"
if ($ServerName.ToLower() -in$ListOfHosts) { $global:DebugForHost = $True } }
} # else file does not exist } # else directory does not exist }
Function CreateLogFile { # For some reason checking for "$True" with "if ($global:a -and $global:b)" is not evaluated correctly!!! # It works OK in a test with a simple PS script ... no idea why ... Thus we use: if ($global:DebugForHost-eq$True) { if ($global:DebugFile-eq$True) { # Create the target directory, if it does not exist if (!(Test-Path -Path $global:LogFilePath)) { New-Item -ItemType directory -Path $global:LogFilePath | Out-Null }
# Check if file exists and delete if it does and OverWrite is set to TRUE if (Test-Path -Path $global:LogFileName) { DebugOut "" DebugOut "Log file already exists at: $global:LogFileName" if ($global:OverWrite-eq$True) { Remove-Item -Path $global:LogFileName -Force | Out-Null } } # If the file has just been removed (OverWrite = YES) or the file does not exist: create it if (!(Test-Path -Path $global:LogFileName)) { #Create log file New-Item -Path $global:LogFileName -ItemType File | Out-Null }
Main </Script></ScriptBody> <Parameters> <Parameter> <Name>sourceId</Name> <Value>$MPElement$</Value> </Parameter> <Parameter> <Name>managedEntityId</Name> <Value>$Target/Id$</Value> </Parameter> <Parameter> <Name>IP</Name> <Value>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/IP$</Value> </Parameter> <Parameter> <Name>Port</Name> <Value>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/Port$</Value> </Parameter> <Parameter> <Name>UserName</Name> <Value>$RunAs[Name='OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile']/UserName$</Value> </Parameter> <Parameter> <Name>Password</Name> <Value>$RunAs[Name='OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile']/Password$</Value> </Parameter> <Parameter> <Name>SkipCACheck</Name> <Value>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</Value> </Parameter> <Parameter> <Name>SkipCNCheck</Name> <Value>$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</Value> </Parameter> <Parameter> <Name>TimeoutSeconds</Name> <Value>300</Value> </Parameter> </Parameters> <TimeoutSeconds>300</TimeoutSeconds> <StrictErrorHandling>false</StrictErrorHandling> </DataSource> </Discovery> </Discoveries> <Rules> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.ScriptError.EventRule"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>NotEqual</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <Or> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- Logged by monitoring scripts --> <ValueType="UnsignedInteger">8011</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- Logged by Discovery --> <ValueType="UnsignedInteger">8017</Value> </ValueExpression> </SimpleExpression> </Expression> </Or> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <Severity>1</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.ScriptError.AlertMessageID"]$</AlertMessageId> <AlertParameters> <!-- Event Text --> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <!-- NetworkName/IP Address --> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> <!-- DisplayName of the Out-Of-Band Server instance --> <AlertParameter3>$Target/Property[Type="System!System.Entity"]/DisplayName$</AlertParameter3> </AlertParameters> <Suppression> <!-- NetworkName/IP Address --> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Error.EventRule"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>NotEqual</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_BMC_NO_RESPONSE --> <ValueType="UnsignedInteger">8599</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <Severity>1</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Error.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> <AlertParameter3>$Target/Property[Type="System!System.Entity"]/DisplayName$</AlertParameter3> </AlertParameters> <Suppression> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Timeout.EventRule"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>NotEqual</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_BMC_TIMEOUT --> <ValueType="UnsignedInteger">8799</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <Severity>1</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Timeout.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> <AlertParameter3>$Target/Property[Type="System!System.Entity"]/DisplayName$</AlertParameter3> </AlertParameters> <Suppression> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.BmcBusy.EventRule"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>NotEqual</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_BMC_BUSY --> <ValueType="UnsignedInteger">8999</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <Severity>1</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.BmcBusy.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> <AlertParameter3>$Target/Property[Type="System!System.Entity"]/DisplayName$</AlertParameter3> </AlertParameters> <Suppression> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.NoAccess.EventRule"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>NotEqual</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="UnsignedInteger">8699</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <Severity>1</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.NoAccess.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> <AlertParameter3>$Target/Property[Type="System!System.Entity"]/DisplayName$</AlertParameter3> </AlertParameters> <Suppression> <SuppressionValue>$Data/EventDescription$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> <SuppressionValue>$Data/EventNumber$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.NotInitialized.EventRule"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>NotEqual</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="UnsignedInteger">8039</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <Severity>1</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.NotInitialized.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> <AlertParameter3>$Target/Property[Type="System!System.Entity"]/DisplayName$</AlertParameter3> </AlertParameters> <Suppression> <SuppressionValue>$Data/EventDescription$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> <SuppressionValue>$Data/EventNumber$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.UnsupportedFirmware.EventRule"Enabled="true"Target="SC!Microsoft.SystemCenter.ManagementServer"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="UnsignedInteger">8009</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <Or> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="Integer">4</Value> </ValueExpression> </SimpleExpression> </Expression> </Or> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <!-- 0: Informational 1: Warning --> <Severity>0</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.UnsupportedFirmware.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> </AlertParameters> <Suppression> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CA.EventRule"Enabled="true"Target="SC!Microsoft.SystemCenter.ManagementServer"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="UnsignedInteger">8399</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <Or> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="Integer">4</Value> </ValueExpression> </SimpleExpression> </Expression> </Or> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <!-- 0: Informational 1: Warning --> <Severity>0</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CA.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> </AlertParameters> <Suppression> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> <RuleID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CN.EventRule"Enabled="true"Target="SC!Microsoft.SystemCenter.ManagementServer"ConfirmDelivery="true"Remotable="true"Priority="Normal"DiscardLevel="100"> <Category>EventCollection</Category> <DataSources> <DataSourceID="DS"TypeID="Windows!Microsoft.Windows.EventProvider"> <ComputerName>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName> <LogName>Operations Manager</LogName> <Expression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="String">PublisherName</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">Health Service Script</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="UnsignedInteger">8499</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <Or> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="Integer">0</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="Integer">EventLevel</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="Integer">4</Value> </ValueExpression> </SimpleExpression> </Expression> </Or> </Expression> </And> </Expression> </DataSource> </DataSources> <WriteActions> <WriteActionID="Alert"TypeID="SystemHealth!System.Health.GenerateAlert"> <Priority>1</Priority> <!-- 0: Informational 1: Warning --> <Severity>0</Severity> <AlertMessageId>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CN.AlertMessageID"]$</AlertMessageId> <AlertParameters> <AlertParameter1>$Data/EventDescription$</AlertParameter1> <AlertParameter2>$Data/Params/Param[1]$</AlertParameter2> </AlertParameters> <Suppression> <SuppressionValue>$Data/Params/Param[1]$</SuppressionValue> <SuppressionValue>$Data/EventDisplayNumber$</SuppressionValue> <SuppressionValue>$Data/PublisherName$</SuppressionValue> <SuppressionValue>$Data/EventLevel$</SuppressionValue> </Suppression> <Custom1 /> <Custom2 /> <Custom3 /> <Custom4 /> <Custom5 /> <Custom6 /> <Custom7 /> <Custom8 /> <Custom9 /> <Custom10 /> </WriteAction> </WriteActions> </Rule> </Rules> <Monitors> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"ConfirmDelivery="true"> <Category>AvailabilityHealth</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter1> <AlertParameter2>$Data/Context/Count$</AlertParameter2> <AlertParameter3>$Data/Context/TimeWindowStart$</AlertParameter3> <AlertParameter4>$Data/Context/TimeWindowEnd$</AlertParameter4> <AlertParameter5>$Data/Context/TimeFirst$</AlertParameter5> <AlertParameter6>$Data/Context/TimeLast$</AlertParameter6> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="RepeatedEventRaised"MonitorTypeStateID="RepeatedEventRaised"HealthState="Warning" /> <OperationalStateID="RepeatedEventReset"MonitorTypeStateID="RepeatedEventReset"HealthState="Success" /> </OperationalStates> <Configuration> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <FilterExpression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_NO_PROCESSOR_INFORMATION ...--> <ValueType="UnsignedInteger">8069</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </FilterExpression> <ConsolidationEventDisplayNumber>EventDisplayNumber</ConsolidationEventDisplayNumber> <ConsolidationPublisherName>PublisherName</ConsolidationPublisherName> <RepeatedEventCount>3</RepeatedEventCount> <IntervalSeconds>3600</IntervalSeconds> <!-- slightly larger than 3 times default monitoring interval --> <NoEventIntervalSeconds>1000</NoEventIntervalSeconds> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"ConfirmDelivery="true"> <Category>AvailabilityHealth</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter1> <AlertParameter2>$Data/Context/Count$</AlertParameter2> <AlertParameter3>$Data/Context/TimeWindowStart$</AlertParameter3> <AlertParameter4>$Data/Context/TimeWindowEnd$</AlertParameter4> <AlertParameter5>$Data/Context/TimeFirst$</AlertParameter5> <AlertParameter6>$Data/Context/TimeLast$</AlertParameter6> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="RepeatedEventRaised"MonitorTypeStateID="RepeatedEventRaised"HealthState="Warning" /> <OperationalStateID="RepeatedEventReset"MonitorTypeStateID="RepeatedEventReset"HealthState="Success" /> </OperationalStates> <Configuration> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <FilterExpression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_NO_MEMORY_INFORMATION ...--> <ValueType="UnsignedInteger">8059</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </FilterExpression> <ConsolidationEventDisplayNumber>EventDisplayNumber</ConsolidationEventDisplayNumber> <ConsolidationPublisherName>PublisherName</ConsolidationPublisherName> <RepeatedEventCount>3</RepeatedEventCount> <IntervalSeconds>3600</IntervalSeconds> <!-- slightly larger than 3 times default monitoring interval --> <NoEventIntervalSeconds>1000</NoEventIntervalSeconds> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"ConfirmDelivery="true"> <Category>AvailabilityHealth</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter1> <AlertParameter2>$Data/Context/Count$</AlertParameter2> <AlertParameter3>$Data/Context/TimeWindowStart$</AlertParameter3> <AlertParameter4>$Data/Context/TimeWindowEnd$</AlertParameter4> <AlertParameter5>$Data/Context/TimeFirst$</AlertParameter5> <AlertParameter6>$Data/Context/TimeLast$</AlertParameter6> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="RepeatedEventRaised"MonitorTypeStateID="RepeatedEventRaised"HealthState="Warning" /> <OperationalStateID="RepeatedEventReset"MonitorTypeStateID="RepeatedEventReset"HealthState="Success" /> </OperationalStates> <Configuration> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <FilterExpression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_NO_FAN_INFORMATION ...--> <ValueType="UnsignedInteger">8049</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </FilterExpression> <ConsolidationEventDisplayNumber>EventDisplayNumber</ConsolidationEventDisplayNumber> <ConsolidationPublisherName>PublisherName</ConsolidationPublisherName> <RepeatedEventCount>3</RepeatedEventCount> <IntervalSeconds>3600</IntervalSeconds> <!-- slightly larger than 3 times default monitoring interval --> <NoEventIntervalSeconds>1000</NoEventIntervalSeconds> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"ConfirmDelivery="true"> <Category>AvailabilityHealth</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter1> <AlertParameter2>$Data/Context/Count$</AlertParameter2> <AlertParameter3>$Data/Context/TimeWindowStart$</AlertParameter3> <AlertParameter4>$Data/Context/TimeWindowEnd$</AlertParameter4> <AlertParameter5>$Data/Context/TimeFirst$</AlertParameter5> <AlertParameter6>$Data/Context/TimeLast$</AlertParameter6> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="RepeatedEventRaised"MonitorTypeStateID="RepeatedEventRaised"HealthState="Warning" /> <OperationalStateID="RepeatedEventReset"MonitorTypeStateID="RepeatedEventReset"HealthState="Success" /> </OperationalStates> <Configuration> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <FilterExpression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_NO_POWER_SUPPLY_INFORMATION ...--> <ValueType="UnsignedInteger">8079</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </FilterExpression> <ConsolidationEventDisplayNumber>EventDisplayNumber</ConsolidationEventDisplayNumber> <ConsolidationPublisherName>PublisherName</ConsolidationPublisherName> <RepeatedEventCount>3</RepeatedEventCount> <IntervalSeconds>3600</IntervalSeconds> <!-- slightly larger than 3 times default monitoring interval --> <NoEventIntervalSeconds>1000</NoEventIntervalSeconds> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"ConfirmDelivery="true"> <Category>AvailabilityHealth</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter1> <AlertParameter2>$Data/Context/Count$</AlertParameter2> <AlertParameter3>$Data/Context/TimeWindowStart$</AlertParameter3> <AlertParameter4>$Data/Context/TimeWindowEnd$</AlertParameter4> <AlertParameter5>$Data/Context/TimeFirst$</AlertParameter5> <AlertParameter6>$Data/Context/TimeLast$</AlertParameter6> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="RepeatedEventRaised"MonitorTypeStateID="RepeatedEventRaised"HealthState="Warning" /> <OperationalStateID="RepeatedEventReset"MonitorTypeStateID="RepeatedEventReset"HealthState="Success" /> </OperationalStates> <Configuration> <ComputerName>.</ComputerName> <LogName>Operations Manager</LogName> <FilterExpression> <And> <Expression> <SimpleExpression> <ValueExpression> <XPathQueryType="UnsignedInteger">EventDisplayNumber</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <!-- ERROR_NO_COMPONENT_STATUS_INFORMATION ...--> <ValueType="UnsignedInteger">8089</Value> </ValueExpression> </SimpleExpression> </Expression> <Expression> <SimpleExpression> <ValueExpression> <!-- IP Address ... --> <XPathQueryType="String">Params/Param[1]</XPathQuery> </ValueExpression> <Operator>Equal</Operator> <ValueExpression> <ValueType="String">$Target/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</Value> </ValueExpression> </SimpleExpression> </Expression> </And> </FilterExpression> <ConsolidationEventDisplayNumber>EventDisplayNumber</ConsolidationEventDisplayNumber> <ConsolidationPublisherName>PublisherName</ConsolidationPublisherName> <!-- Component Status is used for hardware and component status monitoring in parallel --> <RepeatedEventCount>10</RepeatedEventCount> <IntervalSeconds>3600</IntervalSeconds> <!-- slightly larger than 3 times default monitoring interval --> <NoEventIntervalSeconds>1000</NoEventIntervalSeconds> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.MonitorType"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus_AlertMessageResourceID"> <AlertOnState>Error</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ID$</AlertParameter1> <AlertParameter2>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ManagementUrl$</AlertParameter2> <AlertParameter3>$Data/Context/Property[@Name='IP']$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthOK"MonitorTypeStateID="HealthOK"HealthState="Success" /> <OperationalStateID="HealthWarning"MonitorTypeStateID="HealthWarning"HealthState="Warning" /> <OperationalStateID="HealthError"MonitorTypeStateID="HealthError"HealthState="Error" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>ComponentStatusHealth.ps1</ScriptName> <!-- Note: Sufficient for a single web request with optional retries --> <TimeoutSeconds>125</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ManagementUrl$</ManagementUrl> <!-- Note: Fixed since we cannot determine actual values for all hosted Component Status elements (hosted on different levels) --> <SkipCACheck>true</SkipCACheck> <SkipCNCheck>true</SkipCNCheck> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ID$</ID> <SensorType>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/SensorType$</SensorType> <EntityId>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/EntityId$</EntityId> <EntityInstance>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/EntityInstance$</EntityInstance> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateValid.Monitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.HealthStateValid.MonitorType"ConfirmDelivery="true"> <Category>AvailabilityHealth</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateInvalid_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ID$</AlertParameter1> <AlertParameter2>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ManagementUrl$</AlertParameter2> <AlertParameter3>$Data/Context/Property[@Name='IP']$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthStateValid"MonitorTypeStateID="HealthStateValid"HealthState="Success" /> <OperationalStateID="HealthStateUnknown"MonitorTypeStateID="HealthStateUnknown"HealthState="Warning" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>ComponentStatusHealth.ps1</ScriptName> <!-- Note: Sufficient for a single web request with optional retries --> <TimeoutSeconds>125</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ManagementUrl$</ManagementUrl> <!-- Note: Fixed since we cannot determine actual values for all hosted Component Status elements (hosted on different levels) --> <SkipCACheck>true</SkipCACheck> <SkipCNCheck>true</SkipCNCheck> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/ID$</ID> <SensorType>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/SensorType$</SensorType> <EntityId>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/EntityId$</EntityId> <EntityInstance>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"]/EntityInstance$</EntityInstance> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponentMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent_AlertMessageResourceID"> <AlertOnState>Error</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthOK"MonitorTypeStateID="HealthOK"HealthState="Success" /> <OperationalStateID="HealthWarning"MonitorTypeStateID="HealthWarning"HealthState="Warning" /> <OperationalStateID="HealthError"MonitorTypeStateID="HealthError"HealthState="Error" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponentMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent_AlertMessageResourceID"> <AlertOnState>Error</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthOK"MonitorTypeStateID="HealthOK"HealthState="Success" /> <OperationalStateID="HealthWarning"MonitorTypeStateID="HealthWarning"HealthState="Warning" /> <OperationalStateID="HealthError"MonitorTypeStateID="HealthError"HealthState="Error" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponentMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent_AlertMessageResourceID"> <AlertOnState>Error</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthOK"MonitorTypeStateID="HealthOK"HealthState="Success" /> <OperationalStateID="HealthWarning"MonitorTypeStateID="HealthWarning"HealthState="Warning" /> <OperationalStateID="HealthError"MonitorTypeStateID="HealthError"HealthState="Error" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponentMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent_AlertMessageResourceID"> <AlertOnState>Error</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthOK"MonitorTypeStateID="HealthOK"HealthState="Success" /> <OperationalStateID="HealthWarning"MonitorTypeStateID="HealthWarning"HealthState="Warning" /> <OperationalStateID="HealthError"MonitorTypeStateID="HealthError"HealthState="Error" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponent.HealthStateValid.Monitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent.HealthStateInvalid_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthStateValid"MonitorTypeStateID="HealthStateValid"HealthState="Success" /> <OperationalStateID="HealthStateUnknown"MonitorTypeStateID="HealthStateUnknown"HealthState="Warning" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponent.HealthStateValid.Monitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent.HealthStateInvalid_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthStateValid"MonitorTypeStateID="HealthStateValid"HealthState="Success" /> <OperationalStateID="HealthStateUnknown"MonitorTypeStateID="HealthStateUnknown"HealthState="Warning" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponent.HealthStateValid.Monitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent.HealthStateInvalid_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthStateValid"MonitorTypeStateID="HealthStateValid"HealthState="Success" /> <OperationalStateID="HealthStateUnknown"MonitorTypeStateID="HealthStateUnknown"HealthState="Warning" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <UnitMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponent.HealthStateValid.Monitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"TypeID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"ConfirmDelivery="true"> <Category>Custom</Category> <AlertSettingsAlertMessage="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent.HealthStateInvalid_AlertMessageResourceID"> <AlertOnState>Warning</AlertOnState> <AutoResolve>true</AutoResolve> <AlertPriority>Normal</AlertPriority> <AlertSeverity>MatchMonitorHealth</AlertSeverity> <AlertParameters> <AlertParameter1>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</AlertParameter1> <AlertParameter2>$Target/Host/Host/Property[Type="FTSLIB!Fujitsu.ServerView.Server"]/NetworkName$</AlertParameter2> <AlertParameter3>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</AlertParameter3> <AlertParameter4>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ServerName$</AlertParameter4> </AlertParameters> </AlertSettings> <OperationalStates> <OperationalStateID="HealthStateValid"MonitorTypeStateID="HealthStateValid"HealthState="Success" /> <OperationalStateID="HealthStateUnknown"MonitorTypeStateID="HealthStateUnknown"HealthState="Warning" /> </OperationalStates> <Configuration> <IntervalSeconds>300</IntervalSeconds> <ScriptName>HardwareComponentHealth.ps1</ScriptName> <TimeoutSeconds>200</TimeoutSeconds> <!-- Fixed Parameter Set --> <UserName>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/UserName$</UserName> <Password>$RunAs[Name="OOB!Microsoft.SystemCenter.OOB.SMASHMonitoringProfile"]/Password$</Password> <ManagementUrl>$Target/Host/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</ManagementUrl> <SkipCACheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCACheck$</SkipCACheck> <SkipCNCheck>$Target/Host/Host/Host/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/SkipCNCheck$</SkipCNCheck> <UseComponentStatus>true</UseComponentStatus> <!-- Cookdown Filter Parameter --> <ID>$Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"]/ID$</ID> <Host_ID>$Target/Host/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"]/ID$</Host_ID> </Configuration> </UnitMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupPRIMERGYServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="FTSLIB!Fujitsu.ServerView.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsPYServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupBXServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsBXServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupCXServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsCXServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupRXServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsRXServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupSXServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsSXServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupTXServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsTXServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupXXServersGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsXXServersGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupPRIMERGYBXServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupContainsBXServer"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupPRIMERGYCXServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupContainsCXServer"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupPRIMERGYRXServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupContainsRXServer"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupPRIMERGYSXServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupContainsSXServer"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupPRIMERGYTXServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupContainsTXServer"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupPRIMERGYXXServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Remotable="true"Priority="Normal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroup"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupContainsXXServer"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroupHostsProcessor"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupHostsMemory"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroupHostsFan"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroupHostsPowerSupply"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitorToServerStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsCommunicationMonitor"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroupToServerStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsProcessorGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupToServerStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsMemoryGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroupToServerStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsFanGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroupToServerStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsPowerSupplyGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerToiRmcDeviceStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDeviceHostsServer"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureStatusGroupHostsTemperatureComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageStatusGroupHostsVoltageComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageStatusGroupHostsBatteryComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotStatusGroupHostsDriveSlotComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotStatusGroupHostsPciSlotComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitStatusGroupHostsPowerUnitComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatusToGroupStatusHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareStatusGroupHostsMgmtSoftwareComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroupToServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsTemperatureComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroupToServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsVoltageComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroupToMainboardHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.MainboardReferencesVoltageComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroupToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsDriveSlotComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroupToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsPciSlotComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroupToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsPowerUnitComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroupToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsMgmtSoftwareComponentGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsMgmtCtrlComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsPowerMonitoringComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsBiosComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsOtherComponentStatus"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> <DependencyMonitorID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupToOutOfBandServerHealthRollupMonitor"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ParentMonitorID="SystemHealth!System.Health.AvailabilityState"Remotable="true"Priority="Normal"RelationshipType="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsOtherComponentStatusGroup"MemberMonitor="SystemHealth!System.Health.AvailabilityState"> <Category>AvailabilityHealth</Category> <Algorithm>WorstOf</Algorithm> </DependencyMonitor> </Monitors> </Monitoring> <Presentation> <ConsoleTasks> <ConsoleTaskID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebInterface.Server.Task"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"RequireOutput="false"> <Criteria></Criteria> <Assembly>Res.DummyAssembly.Server.WebInterface</Assembly> <Handler>ShellHandler</Handler> <Parameters> <ArgumentName="WorkingDirectory">%HOMEDRIVE%%HOMEPATH%</Argument> <ArgumentName="Application">"%SystemRoot%\System32\rundll32.exe"</Argument> <Argument>url.dll,FileProtocolHandler $Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$</Argument> </Parameters> </ConsoleTask> <ConsoleTaskID="Fujitsu.Servers.PRIMERGY.OutOfBand.SystemReport.Server.Task"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"RequireOutput="false"> <Criteria></Criteria> <Assembly>Res.DummyAssembly.Server.SystemReport</Assembly> <Handler>ShellHandler</Handler> <Parameters> <ArgumentName="WorkingDirectory">%HOMEDRIVE%%HOMEPATH%</Argument> <ArgumentName="Application">"%SystemRoot%\System32\rundll32.exe"</Argument> <Argument>url.dll,FileProtocolHandler $Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$/report.xml</Argument> </Parameters> </ConsoleTask> <ConsoleTaskID="Fujitsu.Servers.PRIMERGY.OutOfBand.Avr.Server.Task"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"RequireOutput="false"> <Criteria></Criteria> <Assembly>Res.DummyAssembly.Server.Avr</Assembly> <Handler>ShellHandler</Handler> <Parameters> <ArgumentName="WorkingDirectory">%HOMEDRIVE%%HOMEPATH%</Argument> <ArgumentName="Application">"%SystemRoot%\System32\rundll32.exe"</Argument> <Argument>url.dll,FileProtocolHandler $Target/Property[Type="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"]/ManagementUrl$/avr.jnlp</Argument> </Parameters> </ConsoleTask> <ConsoleTaskID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebInterface.BMC.Task"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice"RequireOutput="false"> <Criteria></Criteria> <Assembly>Res.DummyAssembly.BMC.WebInterface</Assembly> <Handler>ShellHandler</Handler> <Parameters> <ArgumentName="WorkingDirectory">%HOMEDRIVE%%HOMEPATH%</Argument> <ArgumentName="Application">"%SystemRoot%\System32\rundll32.exe"</Argument> <Argument>url.dll,FileProtocolHandler https://$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/IP$:$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/Port$</Argument> </Parameters> </ConsoleTask> <ConsoleTaskID="Fujitsu.Servers.PRIMERGY.OutOfBand.SystemReport.BMC.Task"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice"RequireOutput="false"> <Criteria></Criteria> <Assembly>Res.DummyAssembly.BMC.SystemReport</Assembly> <Handler>ShellHandler</Handler> <Parameters> <ArgumentName="WorkingDirectory">%HOMEDRIVE%%HOMEPATH%</Argument> <ArgumentName="Application">"%SystemRoot%\System32\rundll32.exe"</Argument> <Argument>url.dll,FileProtocolHandler https://$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/IP$:$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/Port$/report.xml</Argument> </Parameters> </ConsoleTask> <ConsoleTaskID="Fujitsu.Servers.PRIMERGY.OutOfBand.Avr.BMC.Task"Accessibility="Public"Enabled="true"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice"RequireOutput="false"> <Criteria></Criteria> <Assembly>Res.DummyAssembly.BMC.Avr</Assembly> <Handler>ShellHandler</Handler> <Parameters> <ArgumentName="WorkingDirectory">%HOMEDRIVE%%HOMEPATH%</Argument> <ArgumentName="Application">"%SystemRoot%\System32\rundll32.exe"</Argument> <Argument>url.dll,FileProtocolHandler https://$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/IP$:$Target/Property[Type="OOB!Microsoft.SystemCenter.OOB.WSManDevice"]/Port$/avr.jnlp</Argument> </Parameters> </ConsoleTask> </ConsoleTasks> <Views> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ActiveAlertsView"Accessibility="Public"Enabled="true"Target="System!System.LogicalEntity"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Visible="true"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="200"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> </Presentation> <Target>$MPElement[Name="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"]$</Target> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>BiosVersion</Name> <Id>BiosVersion</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>FirmwareVersion</Name> <Id>FirmwareVersion</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHealthView"Accessibility="Public"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"TypeID="SC!Microsoft.SystemCenter.StateViewType"Visible="true"> <Category>AvailabilityHealth</Category> <Criteria> <InMaintenanceMode>false</InMaintenanceMode> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.Server</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Model</Name> <Id>Model</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SerialNumber</Name> <Id>SerialNumber</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ProcessorGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroup</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>MemoryGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroup</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>FanGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroup</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>PowerSupplyGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroup</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ComponentStatusTemperatureGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroup</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ComponentStatusVoltageGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>OtherComponentStatusGroup</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup</Id> </ColumnInfo> </Presentation> <Target></Target> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.Fan</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Type</Name> <Id>Type</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Size</Name> <Id>Size</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Manufacturer</Name> <Id>Manufacturer</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ManufacturingDate</Name> <Id>ManufacturingDate</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>BusFrequency</Name> <Id>BusFrequency</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Voltage</Name> <Id>Voltage</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>PartNumber</Name> <Id>PartNumber</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SerialNumber</Name> <Id>SerialNumber</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>RevisionCode</Name> <Id>RevisionCode</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ConfigStatus</Name> <Id>ConfigStatus</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Model</Name> <Id>Model</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Manufacturer</Name> <Id>Manufacturer</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ManufacturingDate</Name> <Id>ManufacturingDate</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>PartNumber</Name> <Id>PartNumber</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SerialNumber</Name> <Id>SerialNumber</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Version</Name> <Id>Version</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="true"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.Processor</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="200"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Model</Name> <Id>Model</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Manufacturer</Name> <Id>Manufacturer</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>NumLogicalCores</Name> <Id>NumLogicalCores</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>NumPhysicalCores</Name> <Id>NumPhysicalCores</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>MaxClockSpeed</Name> <Id>MaxClockSpeed</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>L1Cache</Name> <Id>L1Cache</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>L2Cache</Name> <Id>L2Cache</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>L3Cache</Name> <Id>L3Cache</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Dashboard.View"Accessibility="Internal"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"TypeID="SC!Microsoft.SystemCenter.DashboardViewType"Visible="false"> <Category>Operations</Category> <PanelConfigurationColumns="1"Rows="2"> <CellColumn="1"Row="1"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.State.View" /> <CellColumn="1"Row="2"ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Alerts.View" /> </PanelConfiguration> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.State.View"TypeID="SC!Microsoft.SystemCenter.StateViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria /> <Presentation> <ColumnInfoIndex="0"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>InMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="0"Width="100"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>State</Name> <Id>Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="150"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>ServerName</Name> <Id>ServerName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>SensorType</Name> <Id>SensorType</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityId</Name> <Id>EntityId</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>EntityInstance</Name> <Id>EntityInstance</Id> </ColumnInfo> </Presentation> </View> <ViewID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Alerts.View"TypeID="SC!Microsoft.SystemCenter.AlertViewType"Target="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"Visible="false"Accessibility="Public"> <Category>Operations</Category> <Criteria> <ResolutionState> <StateRangeOperator="NotEquals">255</StateRange> </ResolutionState> </Criteria> <Presentation> <ColumnInfoIndex="0"SortIndex="0"Width="60"Grouped="true"Sorted="false"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Severity</Name> <Id>Severity</Id> </ColumnInfo> <ColumnInfoIndex="1"SortIndex="-1"Width="28"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Icon</Name> <Id>Icon</Id> </ColumnInfo> <ColumnInfoIndex="2"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Path</Name> <Id>MonitoringObjectPath</Id> </ColumnInfo> <ColumnInfoIndex="3"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Source</Name> <Id>MonitoringObjectDisplayName</Id> </ColumnInfo> <ColumnInfoIndex="4"SortIndex="-1"Width="22"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Maintenance Mode</Name> <Id>MonitoringObjectInMaintenanceMode</Id> </ColumnInfo> <ColumnInfoIndex="5"SortIndex="-1"Width="250"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Name</Name> <Id>Name</Id> </ColumnInfo> <ColumnInfoIndex="6"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="true"SortOrder="Ascending"> <Name>Resolution State</Name> <Id>ResolutionState</Id> </ColumnInfo> <ColumnInfoIndex="7"SortIndex="1"Width="150"Grouped="false"Sorted="true"IsSortable="true"Visible="true"SortOrder="Descending"> <Name>Created</Name> <Id>TimeRaised</Id> </ColumnInfo> <ColumnInfoIndex="8"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="false"Visible="true"SortOrder="Ascending"> <Name>Age</Name> <Id>Age</Id> </ColumnInfo> <ColumnInfoIndex="9"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Type</Name> <Id>Category</Id> </ColumnInfo> <ColumnInfoIndex="10"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Owner</Name> <Id>Owner</Id> </ColumnInfo> <ColumnInfoIndex="11"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Priority</Name> <Id>Priority</Id> </ColumnInfo> <ColumnInfoIndex="12"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Latency</Name> <Id>Latency</Id> </ColumnInfo> <ColumnInfoIndex="13"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Description</Name> <Id>Description</Id> </ColumnInfo> <ColumnInfoIndex="14"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Connector</Name> <Id>ConnectorId</Id> </ColumnInfo> <ColumnInfoIndex="15"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Forwarding Status</Name> <Id>ConnectorStatus</Id> </ColumnInfo> <ColumnInfoIndex="16"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Class</Name> <Id>Class</Id> </ColumnInfo> <ColumnInfoIndex="17"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time in State</Name> <Id>TimeInState</Id> </ColumnInfo> <ColumnInfoIndex="18"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 1</Name> <Id>CustomField1</Id> </ColumnInfo> <ColumnInfoIndex="19"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 2</Name> <Id>CustomField2</Id> </ColumnInfo> <ColumnInfoIndex="20"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 3</Name> <Id>CustomField3</Id> </ColumnInfo> <ColumnInfoIndex="21"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 4</Name> <Id>CustomField4</Id> </ColumnInfo> <ColumnInfoIndex="22"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 5</Name> <Id>CustomField5</Id> </ColumnInfo> <ColumnInfoIndex="23"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 6</Name> <Id>CustomField6</Id> </ColumnInfo> <ColumnInfoIndex="24"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 7</Name> <Id>CustomField7</Id> </ColumnInfo> <ColumnInfoIndex="25"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 8</Name> <Id>CustomField8</Id> </ColumnInfo> <ColumnInfoIndex="26"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 9</Name> <Id>CustomField9</Id> </ColumnInfo> <ColumnInfoIndex="27"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Custom Field 10</Name> <Id>CustomField10</Id> </ColumnInfo> <ColumnInfoIndex="28"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Resolved By</Name> <Id>ResolvedBy</Id> </ColumnInfo> <ColumnInfoIndex="29"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Time Resolved</Name> <Id>TimeResolved</Id> </ColumnInfo> <ColumnInfoIndex="30"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last State Change</Name> <Id>TimeResolutionStateLastModified</Id> </ColumnInfo> <ColumnInfoIndex="31"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified</Name> <Id>LastModified</Id> </ColumnInfo> <ColumnInfoIndex="32"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Last Modified By</Name> <Id>LastModifiedBy</Id> </ColumnInfo> <ColumnInfoIndex="33"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Management Group</Name> <Id>ManagementGroup</Id> </ColumnInfo> <ColumnInfoIndex="34"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Site</Name> <Id>SiteName</Id> </ColumnInfo> <ColumnInfoIndex="35"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Repeat Count</Name> <Id>RepeatCount</Id> </ColumnInfo> <ColumnInfoIndex="36"SortIndex="-1"Width="100"Grouped="false"Sorted="false"IsSortable="true"Visible="false"SortOrder="Ascending"> <Name>Ticket ID</Name> <Id>TicketId</Id> </ColumnInfo> </Presentation> </View> </Views> <Folders> <FolderID="Fujitsu.Servers.PRIMERGY.OutOfBand.ViewFolder"Accessibility="Public"ParentFolder="FTSLIB!Fujitsu.ServerView.Folder" /> <FolderID="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"Accessibility="Public"ParentFolder="Fujitsu.Servers.PRIMERGY.OutOfBand.ViewFolder" /> <FolderID="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"Accessibility="Public"ParentFolder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder" /> </Folders> <FolderItems> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ActiveAlertsView"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerStatus.ActiveAlertsView.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHealthView"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHealthView.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Dashboard.View.FolderItem" /> <FolderItemElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Dashboard.View"Folder="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"ID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Dashboard.View.FolderItem" /> </FolderItems> <ImageReferences> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ImageID="FTSLIB!Fujitsu.ServerView.Server.80x80Image" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"ImageID="FTSLIB!Fujitsu.ServerView.Server.16x16Image" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServer"ImageID="FTSIMG!Fujitsu.BXServer.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServer"ImageID="FTSIMG!Fujitsu.BXServer.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServer"ImageID="FTSIMG!Fujitsu.CXServer.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServer"ImageID="FTSIMG!Fujitsu.CXServer.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServer"ImageID="FTSIMG!Fujitsu.RXServer.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServer"ImageID="FTSIMG!Fujitsu.RXServer.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServer"ImageID="FTSIMG!Fujitsu.SXServer.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServer"ImageID="FTSIMG!Fujitsu.SXServer.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServer"ImageID="FTSIMG!Fujitsu.TXServer.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServer"ImageID="FTSIMG!Fujitsu.TXServer.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServer"ImageID="FTSIMG!Fujitsu.XXServer.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServer"ImageID="FTSIMG!Fujitsu.XXServer.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.MainboardDiagramIcon" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard16Icon" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroup"ImageID="FTSIMG!Processor.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroup"ImageID="FTSIMG!Processor.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"ImageID="FTSIMG!Processor.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"ImageID="FTSIMG!Processor.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroup"ImageID="FTSIMG!MemoryModule.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroup"ImageID="FTSIMG!MemoryModule.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"ImageID="FTSIMG!MemoryModule.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"ImageID="FTSIMG!MemoryModule.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotUsable"ImageID="FTSIMG!MemoryModule.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotUsable"ImageID="FTSIMG!MemoryModule.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroup"ImageID="FTSIMG!Fan.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroup"ImageID="FTSIMG!Fan.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"ImageID="FTSIMG!Fan.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"ImageID="FTSIMG!Fan.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroup"ImageID="FTSIMG!PowerSupply.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroup"ImageID="FTSIMG!PowerSupply.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"ImageID="FTSIMG!PowerSupply.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"ImageID="FTSIMG!PowerSupply.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ImageID="FTSIMG!CommunicationMonitor.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"ImageID="FTSIMG!CommunicationMonitor.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"ImageID="FTSLIB!Fujitsu.ServerView.Group.80x80Image" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroup"ImageID="FTSIMG!Fujitsu.BXServer.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroup"ImageID="FTSIMG!Fujitsu.CXServer.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroup"ImageID="FTSIMG!Fujitsu.RXServer.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroup"ImageID="FTSIMG!Fujitsu.SXServer.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroup"ImageID="FTSIMG!Fujitsu.TXServer.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroup"ImageID="FTSIMG!Fujitsu.XXServer.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"ImageID="FTSLIB!Fujitsu.ServerView.Group.16x16Image" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroup"ImageID="FTSIMG!Fujitsu.BXServer.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroup"ImageID="FTSIMG!Fujitsu.CXServer.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroup"ImageID="FTSIMG!Fujitsu.RXServer.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroup"ImageID="FTSIMG!Fujitsu.SXServer.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroup"ImageID="FTSIMG!Fujitsu.TXServer.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroup"ImageID="FTSIMG!Fujitsu.XXServer.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorNotPresent"ImageID="FTSIMG!Processor.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorNotPresent"ImageID="FTSIMG!Processor.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotPresent"ImageID="FTSIMG!MemoryModule.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotPresent"ImageID="FTSIMG!MemoryModule.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanNotPresent"ImageID="FTSIMG!Fan.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanNotPresent"ImageID="FTSIMG!Fan.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyNotPresent"ImageID="FTSIMG!PowerSupply.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyNotPresent"ImageID="FTSIMG!PowerSupply.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotNotPresent"ImageID="FTSIMG!PhysicalDrive.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotNotPresent"ImageID="FTSIMG!PhysicalDrive.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotNotPresent"ImageID="FTSIMG!CtrlCard.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotNotPresent"ImageID="FTSIMG!CtrlCard.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryNotPresent"ImageID="FTSIMG!Battery.NotPresent.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryNotPresent"ImageID="FTSIMG!Battery.NotPresent.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ImageID="FTSIMG!OtherState.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"ImageID="FTSIMG!OtherState.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureComponentStatus"ImageID="FTSIMG!TemperatureSensor.Blue.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureComponentStatus"ImageID="FTSIMG!TemperatureSensor.Blue.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageComponentStatus"ImageID="FTSIMG!VoltageSensor.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageComponentStatus"ImageID="FTSIMG!VoltageSensor.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryComponentStatus"ImageID="FTSIMG!Battery.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryComponentStatus"ImageID="FTSIMG!Battery.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"ImageID="FTSIMG!Bios.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"ImageID="FTSIMG!Bios.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"ImageID="FTSIMG!EmbeddedCard.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"ImageID="FTSIMG!EmbeddedCard.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus"ImageID="FTSIMG!Software.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus"ImageID="FTSIMG!Software.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus"ImageID="FTSIMG!PowerConsumption.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus"ImageID="FTSIMG!PowerConsumption.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus"ImageID="FTSIMG!PhysicalDrive.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus"ImageID="FTSIMG!PhysicalDrive.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus"ImageID="FTSIMG!CtrlCard.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus"ImageID="FTSIMG!CtrlCard.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus"ImageID="FTSIMG!PrintedCircuitBoard.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus"ImageID="FTSIMG!PrintedCircuitBoard.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroup"ImageID="FTSIMG!TemperatureSensor.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroup"ImageID="FTSIMG!TemperatureSensor.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup"ImageID="FTSIMG!VoltageSensor.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup"ImageID="FTSIMG!VoltageSensor.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroup"ImageID="FTSIMG!PhysicalDrive.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroup"ImageID="FTSIMG!PhysicalDrive.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroup"ImageID="FTSIMG!CtrlCard.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroup"ImageID="FTSIMG!CtrlCard.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroup"ImageID="FTSIMG!Software.Group.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroup"ImageID="FTSIMG!Software.Group.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorComponentStatus"ImageID="FTSIMG!Processor.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorComponentStatus"ImageID="FTSIMG!Processor.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryComponentStatus"ImageID="FTSIMG!MemoryModule.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryComponentStatus"ImageID="FTSIMG!MemoryModule.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanComponentStatus"ImageID="FTSIMG!Fan.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanComponentStatus"ImageID="FTSIMG!Fan.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyComponentStatus"ImageID="FTSIMG!PowerSupply.80x80" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyComponentStatus"ImageID="FTSIMG!PowerSupply.16x16" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus"ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentDiagramIcon" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus"ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponent16Icon" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroup"ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitGroupDiagramIcon" /> <ImageReferenceElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroup"ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitGroup16Icon" /> </ImageReferences> <StringResources> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.ScriptError.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Error.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.NoAccess.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Timeout.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.BmcBusy.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.NotInitialized.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.UnsupportedFirmware.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CA.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CN.AlertMessageID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateInvalid_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent.HealthStateInvalid_AlertMessageResourceID" /> <StringResourceID="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent_AlertMessageResourceID" /> </StringResources> </Presentation> <LanguagePacks> <LanguagePackID="ENU"IsDefault="true"> <DisplayStrings> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem"> <Name>Repeated 'Processor' Communication Problem Monitor</Name> <Description>This monitor checks if there are multiple communication problems related to the Processor information of the Fujitsu Out-Of-Band Server within a defined timespan.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem"SubElementID="RepeatedEventReset"> <Name>Repeated Event Reset</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem"SubElementID="RepeatedEventRaised"> <Name>Repeated Event Raised</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {0}: Repeated 'Processor' Communication Problem</Name> <Description> There have been at least {1} communication problems retrieving the Processor Information from the Fujitsu Out-Of-Band Server {0} within the following time window: Time Window Start: {2} Time Window End: {3} Time First Event: {4} Time Last Event: {5} </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem"> <Name>Repeated 'Memory' Communication Problem Monitor</Name> <Description>This monitor checks if there are multiple communication problems related to the Memory information of the Fujitsu Out-Of-Band Server within a defined timespan.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem"SubElementID="RepeatedEventReset"> <Name>Repeated Event Reset</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem"SubElementID="RepeatedEventRaised"> <Name>Repeated Event Raised</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {0}: Repeated 'Memory' Communication Problem</Name> <Description> There have been at least {1} communication problems retrieving the Memory Information from the Fujitsu Out-Of-Band Server {0} within the following time window: Time Window Start: {2} Time Window End: {3} Time First Event: {4} Time Last Event: {5} </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem"> <Name>Repeated 'Fan' Communication Problem Monitor</Name> <Description>This monitor checks if there are multiple communication problems related to the Fan information of the Fujitsu Out-Of-Band Server within a defined timespan.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem"SubElementID="RepeatedEventReset"> <Name>Repeated Event Reset</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem"SubElementID="RepeatedEventRaised"> <Name>Repeated Event Raised</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {0}: Repeated 'Fan' Communication Problem</Name> <Description> There have been at least {1} communication problems retrieving the Fan Information from the Fujitsu Out-Of-Band Server {0} within the following time window: Time Window Start: {2} Time Window End: {3} Time First Event: {4} Time Last Event: {5} </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem"> <Name>Repeated 'Power Supply' Communication Problem Monitor</Name> <Description>This monitor checks if there are multiple communication problems related to the Power Supply information of the Fujitsu Out-Of-Band Server within a defined timespan.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem"SubElementID="RepeatedEventReset"> <Name>Repeated Event Reset</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem"SubElementID="RepeatedEventRaised"> <Name>Repeated Event Raised</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {0}: Repeated 'Power Supply' Communication Problem</Name> <Description> There have been at least {1} communication problems retrieving the Power Supply Information from the Fujitsu Out-Of-Band Server {0} within the following time window: Time Window Start: {2} Time Window End: {3} Time First Event: {4} Time Last Event: {5} </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem"> <Name>Repeated 'Component Status' Communication Problem Monitor</Name> <Description>This monitor checks if there are multiple communication problems related to the Component Status information of the Fujitsu Out-Of-Band Server within a defined timespan.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem"SubElementID="RepeatedEventReset"> <Name>Repeated Event Reset</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem"SubElementID="RepeatedEventRaised"> <Name>Repeated Event Raised</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {0}: Repeated 'Component Status' Communication Problem</Name> <Description> There have been at least {1} communication problems retrieving the Component Status Information from the Fujitsu Out-Of-Band Server {0} within the following time window: Time Window Start: {2} Time Window End: {3} Time First Event: {4} Time Last Event: {5} </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"> <Name>Fujitsu Out-Of-Band Repeated Event Log Monitor Type</Name> <Description>Fujitsu Out-Of-Band Repeated Event Log Monitor Type</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"SubElementID="RepeatedEventCount"> <Name>Event Count</Name> <Description>Number of repeated identical events to trigger the Fujitsu Out-Of-Band Repeated Event Log Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Time Interval in Seconds where repeated events will trigger the Fujitsu Out-Of-Band Repeated Event Log Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SelfResolvingRepeatedEventsMonitorType"SubElementID="NoEventIntervalSeconds"> <Name>No Event Interval Seconds</Name> <Description>Time Interval in Seconds where - when no more events occur - this will reset the Fujitsu Out-Of-Band Repeated Event Log Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ScriptError.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Script Error' Event Rule</Name> <Description>Generate an alert from a non informational Event Log Entry generated by one of the Fujitsu Out-Of-Band Server Management Pack scripts</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ScriptError.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: Script Error</Name> <Description>A script for the Fujitsu Out-Of-Band Server '{2}' with IP address {1} has logged the following problem details in the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Error.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Web Request Error' Event Rule</Name> <Description>Generate an alert from a non informational Event Log Entry generated by one of the Fujitsu Out-Of-Band Server scripts when accessing the iRMC over HTTPS</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Error.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: Web Request Error </Name> <Description>There was a problem with the HTTPS communication to the Fujitsu Out-Of-Band Server '{2}' with IP address {1} which could not be solved with retries. A script has logged the following problem details in the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Timeout.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Web Request Timeout' Event Rule</Name> <Description>Generate an alert from a non informational Event Log Entry generated by one of the Fujitsu Out-Of-Band Server scripts when accessing the iRMC over HTTPS exceeded a configured timeout value.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Timeout.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: Web Request Timeout</Name> <Description>There was no response from the Fujitsu Out-Of-Band Server '{2}' with IP address {1} within a configured timeout value. A script has logged the following problem details in the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.BmcBusy.EventRule"> <Name>Fujitsu Out-Of-Band Server 'iRMC Busy' Event Rule</Name> <Description>Generate an alert from a non informational Event Log Entry when the iRMC of the Fujitsu Out-Of-Band Server is too busy to handle the request.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.BmcBusy.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: iRMC too busy to handle request</Name> <Description>The iRMC of the Fujitsu Out-Of-Band Server '{2}' with IP address {1} is too busy to handle the request. A script has logged the following problem details in the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.NoAccess.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Web Request No Access' Event Rule</Name> <Description>Generate an alert from a non informational Event Log Entry generated by one of the scripts of this Management Pack when accessing the iRMC over HTTPS</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.NoAccess.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: No Access Error</Name> <Description>There was a problem with the provided credentials for the communication with the Fujitsu Out-Of-Band Server '{2}' with IP address {1}. A script has logged the following problem details in the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.NotInitialized.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Memory Not Initialized' Event Rule</Name> <Description>Generate an alert if the Memory Information of the Fujitsu Out-Of-Band Server is not correctly initialized.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.NotInitialized.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: Memory not initialized</Name> <Description>The Memory information in the iRMC of the Fujitsu Out-Of-Band Server '{2}' with IP address {1} is not correctly initialized. Please reboot the Out-Of-Band Server {1} to resolve this problem. Details from the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UnsupportedFirmware.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Unsupported Firmware' Event Rule</Name> <Description>Generate an alert if the detected iRMC firmware version of the Fujitsu Out-Of-Band Server is not supported.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UnsupportedFirmware.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: Unsupported Firmware Version</Name> <Description>The iRMC firmware version of the Fujitsu Out-Of-Band Server with IP address {1} is too old or not supported. Please update the iRMC firmware of the Out-Of-Band Server {1} to resolve this problem. Details from the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CA.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Certificate CA' Event Rule</Name> <Description>Generate an alert if the used SSL certificate from the iRMC of the Fujitsu Out-Of-Band Server cannot be verified to a trusted CA.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CA.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: SSL Certificate Authority (CA) not trusted</Name> <Description>The presented SSL certificate from the iRMC of the Fujitsu Out-Of-Band Server with IP address {1} cannot be verified that it has been issued by a trusted CA. Secure communication cannot be established. Details from the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CN.EventRule"> <Name>Fujitsu Out-Of-Band Server 'Certificate CN' Event Rule</Name> <Description>Generate an alert if the used SSL certificate from the iRMC of the Fujitsu Out-Of-Band Server cannot be verified to a trusted CA.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CN.AlertMessageID"> <Name>Fujitsu Out-Of-Band {1}: SSL Certificate Common Name (CN) mismatch </Name> <Description>The presented SSL certificate from the iRMC of the Fujitsu Out-Of-Band Server with IP address {1} does not contain the correct 'Common Name' (CN) information. Secure communication cannot be established. Details from the Event Log: {0}</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebInterface.BMC.Task"> <Name>ServerView Remote Management iRMC</Name> <Description>Launch default Web Browser to access the Fujitsu iRMC Management Console</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SystemReport.BMC.Task"> <Name>ServerView Remote Management iRMC System Report</Name> <Description>ServerView Remote Management iRMC System Report</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Avr.BMC.Task"> <Name>ServerView Remote Management iRMC Video Redirection</Name> <Description>ServerView Remote Management iRMC Video Redirection using Java Web-Start or HTML5 </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebInterface.Server.Task"> <Name>ServerView Remote Management iRMC</Name> <Description>Launch default Web Browser to access the Fujitsu iRMC Management Console</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SystemReport.Server.Task"> <Name>ServerView Remote Management iRMC System Report</Name> <Description>ServerView Remote Management iRMC System Report</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Avr.Server.Task"> <Name>ServerView Remote Management iRMC Video Redirection</Name> <Description>ServerView Remote Management iRMC Video Redirection using Java Web-Start or HTML5</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ActiveAlertsView"> <Name>Active Alerts</Name> <Description>Fujitsu Out-Of-Band Server Active Alert View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Dashboard.View"> <Name>Other Component Status</Name> <Description>Fujitsu Out-Of-Band Other Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.State.View"> <Name>Out-Of-Band Other Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus.Alerts.View"> <Name>Out-Of-Band Other Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Dashboard.View"> <Name>Temperature Component Status</Name> <Description>Fujitsu Out-Of-Band Temperature Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.State.View"> <Name>Out-Of-Band Temperature Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus.Alerts.View"> <Name>Out-Of-Band Temperature Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Dashboard.View"> <Name>Voltage Component Status</Name> <Description>Fujitsu Out-Of-Band Voltage Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.State.View"> <Name>Out-Of-Band Voltage Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus.Alerts.View"> <Name>Out-Of-Band Voltage Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Dashboard.View"> <Name>BIOS Component Status</Name> <Description>Fujitsu Out-Of-Band BIOS Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.State.View"> <Name>Out-Of-Band Management BIOS Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus.Alerts.View"> <Name>Out-Of-Band Management BIOS Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Dashboard.View"> <Name>Drive Slot Component Status</Name> <Description>Fujitsu Out-Of-Band Drive Slot Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.State.View"> <Name>Out-Of-Band Drive Slot Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus.Alerts.View"> <Name>Out-Of-Band Drive Slot Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Dashboard.View"> <Name>Management Controller Component Status</Name> <Description>Fujitsu Out-Of-Band Management Controller Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.State.View"> <Name>Out-Of-Band Management Management Controller Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus.Alerts.View"> <Name>Out-Of-Band Management Management Controller Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Dashboard.View"> <Name>PCIe Slot Component Status</Name> <Description>Fujitsu Out-Of-Band PCIe Slot Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.State.View"> <Name>Out-Of-Band PCIe Slot Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus.Alerts.View"> <Name>Out-Of-Band PCIe Slot Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Dashboard.View"> <Name>Power Monitoring Component Status</Name> <Description>Fujitsu Out-Of-Band Power Monitoring Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.State.View"> <Name>Out-Of-Band Power Monitoring Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus.Alerts.View"> <Name>Out-Of-Band Power Monitoring Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Dashboard.View"> <Name>Power Unit Component Status</Name> <Description>Fujitsu Out-Of-Band Power Unit Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.State.View"> <Name>Out-Of-Band Power Unit Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus.Alerts.View"> <Name>Out-Of-Band Power Unit Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Dashboard.View"> <Name>Management Software Component Status</Name> <Description>Fujitsu Out-Of-Band Management Software Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.State.View"> <Name>Out-Of-Band Management Software Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus.Alerts.View"> <Name>Out-Of-Band Management Software Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHealthView"> <Name>Servers Health</Name> <Description>Out-Of-Band Servers Health State overview of all Fujitsu Out-Of-Band Servers</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.State.View"> <Name>Out-Of-Band Fan State</Name> <Description>Fan State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Alerts.View"> <Name>Out-Of-Band Fan Alerts</Name> <Description>Fan Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan.Dashboard.View"> <Name>Fan Health</Name> <Description>Fujitsu Out-Of-Band Fan Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.State.View"> <Name>Out-Of-Band Memory State</Name> <Description>Memory State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Alerts.View"> <Name>Out-Of-Band Memory Alerts</Name> <Description>Memory Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.Dashboard.View"> <Name>Memory Health</Name> <Description>Fujitsu Out-Of-Band Memory Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.State.View"> <Name>Out-Of-Band Power Supply State</Name> <Description>Power Supply State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Alerts.View"> <Name>Out-Of-Band Power Supply Alerts</Name> <Description>Power Supply Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply.Dashboard.View"> <Name>Power Supply Health</Name> <Description>Fujitsu Out-Of-Band Power Supply Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Dashboard.View"> <Name>Processor Health</Name> <Description>Fujitsu Out-Of-Band Processor Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.State.View"> <Name>Out-Of-Band Processor State</Name> <Description>Processor State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor.Alerts.View"> <Name>Out-Of-Band Processor Alerts</Name> <Description>Processor Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ViewFolder"> <Name>PRIMERGY Out-Of-Band Servers</Name> <Description>Views related to Fujitsu Out-Of-Band Servers</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.Health.ViewFolder"> <Name>Health Monitoring</Name> <Description>Views related to subsystem health of the Fujitsu Out-Of-Band Servers</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SubSystem.ComponentStatus.Health.ViewFolder"> <Name>Other Component Status Health</Name> <Description>Views related to Component Status subsystem health of the Fujitsu Out-Of-Band Servers</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Dashboard.View"> <Name>All Component Stati</Name> <Description>Fujitsu Out-Of-Band Component Status Dashboard View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.State.View"> <Name>Out-Of-Band Component Status State</Name> <Description>Component Status State View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.Alerts.View"> <Name>Out-Of-Band Component Status Alerts</Name> <Description>Component Status Alerts View</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TimedPowerShell.PropertyBagProvider"> <Name>Timed PowerShell PropertyBag Provider</Name> <Description>Timed PowerShell PropertyBag Provider</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TimedPowerShell.PropertyBagProvider"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Timed PowerShell PropertyBag Provider Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TimedPowerShell.PropertyBagProvider"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Timed PowerShell PropertyBag Provider Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SimpleScheduled.PowerShell.DiscoveryProvider"> <Name>Simple Scheduled Discovery Provider</Name> <Description>Simple Scheduled Discovery Provider</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SimpleScheduled.PowerShell.DiscoveryProvider"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Simple Scheduled Discovery Provider Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SimpleScheduled.PowerShell.DiscoveryProvider"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Simple Scheduled Discovery Provider Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SimpleScheduled.PowerShell.DiscoveryProvider"SubElementID="SyncTime"> <Name>Sync Time</Name> <Description>Simple Scheduled Discovery Provider Sync Time</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UniqueScheduled.PowerShell.DiscoveryProvider"> <Name>Unique Scheduled Discovery Provider</Name> <Description>Unique Scheduled Discovery Provider</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UniqueScheduled.PowerShell.DiscoveryProvider"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Unique Scheduled Discovery Provider Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UniqueScheduled.PowerShell.DiscoveryProvider"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Unique Scheduled Discovery Provider Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UniqueScheduled.PowerShell.DiscoveryProvider"SubElementID="SyncTime"> <Name>Sync Time</Name> <Description>Unique Scheduled Discovery Provider Sync Time</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UniqueScheduled.PowerShell.DiscoveryProvider"SubElementID="SpreadInitializationOverInterval"> <Name>Spread Initialization Over Interval</Name> <Description>Unique Scheduled Discovery Provider Spread Initialization Over Interval</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"> <Name>Out-Of-Band Server Discovery Data Source</Name> <Description>Out-Of-Band Server Discovery Data Source</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Out-Of-Band Server Discovery - Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Out-Of-Band Server Discovery - Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="SpreadInitializationOverInterval"> <Name>Spread Initialization Over Interval</Name> <Description>Out-Of-Band Server Discovery - Spread initialization for multiple instances over an interval of seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="UseDnsNameAsNetworkName"> <Name>Use DNS Name As Network Name</Name> <Description>Out-Of-Band Server Discovery - Use the DNS Name (if available) as 'Network Name' of the Out-Of-Band Server object instance instead of the IP Address</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="UseDnsNameAsDisplayName"> <Name>Use DNS Name As Display Name</Name> <Description>Out-Of-Band Server Discovery - Use the DNS Name (if available) as 'Display Name' of the Out-Of-Band Server object instance instead of the IP Address</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="IncludeNotPresentProcessors"> <Name>Discover Not Present Processors</Name> <Description>Out-Of-Band Server Discovery - Include Not Present Processors in the discovery of the Fujitsu Out-Of-Band Server components</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="IncludeNotPresentFans"> <Name>Discover Not Present Fans</Name> <Description>Out-Of-Band Server Discovery - Include Not Present Fans in the discovery of the Fujitsu Out-Of-Band Server components</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscoveryDataSource"SubElementID="IncludeNotPresentPowerSupplies"> <Name>Discover Not Present Power Supplies</Name> <Description>Out-Of-Band Server Discovery - Include Not Present Power Supplies in the discovery of the Fujitsu Out-Of-Band Server components</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupPRIMERGYServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band Servers Group in Fujitsu PRIMERGY Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band Servers Group into Fujitsu PRIMERGY Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupPRIMERGYServersGroupHealthRollupMonitor"> <Name>Out-Of-Band Servers Group to Fujitsu PRIMERGY Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Out-Of-Band Servers Group to Fujitsu PRIMERGY Servers Group </Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupBXServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band BX Servers Group in Fujitsu Out-Of-Band Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band BX Servers Group into Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupCXServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band CX Servers in Fujitsu Out-Of-Band Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band CX Servers Group into Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupRXServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band RX Servers Group in Fujitsu Out-Of-Band Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band RX Servers Group into Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupSXServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band SX Servers Group in Fujitsu Out-Of-Band Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band SX Servers Group into Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupTXServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band TX Servers Group in Fujitsu Out-Of-Band Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band TX Servers Group into Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupXXServersGroupMembershipRule"> <Name>Fujitsu Out-Of-Band Other Servers Group in Fujitsu Out-Of-Band Servers Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band Other Servers Group into Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupBXMembershipRule"> <Name>Fujitsu Out-Of-Band BX Server in Fujitsu Out-Of-Band BX Server Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band BX Server into Fujitsu Out-Of-Band BX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupCXMembershipRule"> <Name>Fujitsu Out-Of-Band CX Server in Fujitsu Out-Of-Band CX Server Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band CX Server into Fujitsu Out-Of-Band CX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupRXMembershipRule"> <Name>Fujitsu Out-Of-Band RX Server in Fujitsu Out-Of-Band RX Server Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band RX Server into Fujitsu Out-Of-Band RX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupSXMembershipRule"> <Name>Fujitsu Out-Of-Band SX Server in Fujitsu Out-Of-Band SX Server Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band SX Server into Fujitsu Out-Of-Band SX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupTXMembershipRule"> <Name>Fujitsu Out-Of-Band TX Server in Fujitsu Out-Of-Band TX Server Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band TX Server into Fujitsu Out-Of-Band TX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupXXMembershipRule"> <Name>Fujitsu Out-Of-Band Other Server in Fujitsu Out-Of-Band Other Server Group Membership Rule</Name> <Description>This Membership Rule joins Fujitsu Out-Of-Band Other Model Server into Fujitsu Out-Of-Band Other Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupBXServersGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band BX Servers Group to Fujitsu Out-Of-Band Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band BX Servers Group to Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupCXServersGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band CX Servers Group to Fujitsu Out-Of-Band Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band CX Servers Group to Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupRXServersGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band RX Servers Group to Fujitsu Out-Of-Band Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band RX Servers Group to Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupSXServersGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band SX Servers Group to Fujitsu Out-Of-Band Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band SX Servers Group to Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupTXServersGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band TX Servers Group to Fujitsu Out-Of-Band Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band TX Servers Group to Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupXXServersGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Other Servers Group to Fujitsu Out-Of-Band Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Out-Of-Band Other Servers Group to Fujitsu Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupPRIMERGYBXServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band BX Server to Out-Of-Band BX Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band BX Server to Fujitsu Out-Of-Band BX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupPRIMERGYCXServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band CX Server to Out-Of-Band CX Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band CX Server to Fujitsu Out-Of-Band CX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupPRIMERGYRXServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band RX Server to Out-Of-Band RX Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band RX Server to Fujitsu Out-Of-Band RX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupPRIMERGYSXServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band SX Server to Out-Of-Band SX Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band SX Server to Fujitsu Out-Of-Band SX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupPRIMERGYTXServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band TX Server to Out-Of-Band TX Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band TX Server to Fujitsu Out-Of-Band TX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupPRIMERGYXXServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Other Server to Fujitsu Out-Of-Band Other Servers Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band Other Server to Fujitsu Out-Of-Band Other Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand"> <Name>Fujitsu PRIMERGY Out-Of-Band Server - Base Management Pack</Name> <Description>Fujitsu PRIMERGY Out-Of-Band Server - Base Management Pack</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDevice"> <Name>Fujitsu Out-Of-Band iRMC Device</Name> <Description>Fujitsu Out-Of-Band iRMC Device</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"> <Name>Fujitsu Out-Of-Band Server</Name> <Description>Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="BmcFirmware"> <Name>iRMC Firmware</Name> <Description>iRMC Firmware Version of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="SystemFirmware"> <Name>System Firmware</Name> <Description>System Firmware (BIOS) Version of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="Manufacturer"> <Name>Manufacturer</Name> <Description>Manufacturer of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="ManufacturingDate"> <Name>Manufacturing Date</Name> <Description>Manufacturing Date of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="ChassisModel"> <Name>Chassis Model</Name> <Description>Chassis Model of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="PartNumber"> <Name>Part Number</Name> <Description>Part Number of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="ManagementUrl"> <Name>Management URL</Name> <Description>URL for Out-Of-Band Management of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="DnsName"> <Name>DNS Name</Name> <Description>iRMC DNS Name of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Server"SubElementID="PhysicalMemory"> <Name>Physical Memory</Name> <Description>Physical Memory of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServer"> <Name>Fujitsu Out-Of-Band BX Server</Name> <Description>Fujitsu Out-Of-Band BX Server (Blade Server)</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServer"> <Name>Fujitsu Out-Of-Band CX Server</Name> <Description>Fujitsu Out-Of-Band CX Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServer"> <Name>Fujitsu Out-Of-Band RX Server</Name> <Description>Fujitsu Out-Of-Band RX Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServer"> <Name>Fujitsu Out-Of-Band SX Server</Name> <Description>Fujitsu Out-Of-Band SX Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServer"> <Name>Fujitsu Out-Of-Band TX Server</Name> <Description>Fujitsu Out-Of-Band TX Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServer"> <Name>Fujitsu Out-Of-Band Other Server</Name> <Description>Fujitsu Out-Of-Band Server Model other than BX, CX, RX, SX or TX server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"> <Name>Fujitsu Out-Of-Band Communication Component</Name> <Description>Fujitsu Out-Of-Band Communication Component</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitor"SubElementID="ID"> <Name>ID</Name> <Description>The Communication Component ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"> <Name>Fujitsu Out-Of-Band Logical Hardware Component</Name> <Description>Fujitsu Out-Of-Band Logical Hardware Component</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"SubElementID="ID"> <Name>ID</Name> <Description>The Logical Hardware ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"SubElementID="ManagementUrl"> <Name>Management URL</Name> <Description>URL for Out-Of-Band Management of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareComponent"SubElementID="ServerName"> <Name>Server Name</Name> <Description>Fujitsu Out-Of-Band Server containing the Logical Hardware Component</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"> <Name>Fujitsu Out-Of-Band Logical Hardware Group</Name> <Description>Fujitsu Out-Of-Band Logical Hardware Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.LogicalHardwareGroup"SubElementID="ID"> <Name>ID</Name> <Description>The Logical Hardware Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"> <Name>Fujitsu Out-Of-Band Processor</Name> <Description>A single Processor of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="Manufacturer"> <Name>Manufacturer</Name> <Description>Manufacturer</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="MaxClockSpeed"> <Name>Max Clock Speed</Name> <Description>Maximum Processor Clock Speed</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="Model"> <Name>Model</Name> <Description>Processor Brand Model</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="NumLogicalCores"> <Name>Logical Cores</Name> <Description>Number of Logical Processor Cores</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="NumPhysicalCores"> <Name>Physical Cores</Name> <Description>Number of Physical Processor Cores</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="L1Cache"> <Name>Level 1 Cache</Name> <Description>First Level Cache of the Processor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="L2Cache"> <Name>Level 2 Cache</Name> <Description>Second Level Cache of the Processor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Processor"SubElementID="L3Cache"> <Name>Level 3 Cache</Name> <Description>Third Level Cache of the Processor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroup"> <Name>Fujitsu Out-Of-Band Processor Group</Name> <Description>Fujitsu Out-Of-Band Processor Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsProcessorGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Processor Group</Name> <Description>Server Hosts Processor Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroupHostsProcessor"> <Name>Fujitsu Out-Of-Band Processor Group Hosts Processor</Name> <Description>Processor Group Hosts Processor Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroupHostsProcessorNotPresent"> <Name>Fujitsu Out-Of-Band Processor Group Hosts Not Present Processor</Name> <Description>Processor Group Hosts Not Present Processor Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"> <Name>Fujitsu Out-Of-Band Memory</Name> <Description>A single Memory Module of the Fujitsu Out-Of-Band server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="Voltage"> <Name>Voltage</Name> <Description>Voltage of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="Size"> <Name>Size</Name> <Description>Size of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="Type"> <Name>Type</Name> <Description>Type of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="Manufacturer"> <Name>Manufacturer</Name> <Description>Manufacturer of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="ManufacturingDate"> <Name>Manufacturing Date</Name> <Description>Manufacturing Date of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="BusFrequency"> <Name>Bus Frequency</Name> <Description>Bus Frequency of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="PartNumber"> <Name>Part Number</Name> <Description>Part Number of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="SerialNumber"> <Name>Serial Number</Name> <Description>Serial Number of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="RevisionCode"> <Name>Revision Code</Name> <Description>Revision Code of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModule"SubElementID="ConfigStatus"> <Name>Config Status</Name> <Description>Config Status of the Fujitsu Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotUsable"> <Name>Fujitsu Out-Of-Band Not Usable Memory</Name> <Description>A single Memory Module of the Fujitsu Out-Of-Band Server marked as 'Not usable'</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotUsable"SubElementID="ConfigStatus"> <Name>Config Status</Name> <Description>Config Status of the Fujitsu Not Usable Memory Module</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroup"> <Name>Fujitsu Out-Of-Band Memory Group</Name> <Description>Fujitsu Out-Of-Band Memory Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsMemoryGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Memory Group</Name> <Description>Server Hosts Memory Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupHostsMemory"> <Name>Fujitsu Out-Of-Band Memory Group Hosts Memory</Name> <Description>Memory Group Hosts Memory Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupHostsMemoryNotPresent"> <Name>Fujitsu Out-Of-Band Memory Group Hosts Not Present Memory</Name> <Description>Memory Group Hosts Not Present Memory Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupHostsMemoryNotUsable"> <Name>Fujitsu Out-Of-Band Memory Group Hosts Not Usable Memory</Name> <Description>Memory Group Hosts Not Usable Memory Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Fan"> <Name>Fujitsu Out-Of-Band Fan</Name> <Description>A single Fan of the Fujitsu Out-Of-Band server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroup"> <Name>Fujitsu Out-Of-Band Fan Group</Name> <Description>Fujitsu Out-Of-Band Fan Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsFanGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Fan Group</Name> <Description>Fujitsu Out-Of-Band Server Hosts Fan Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroupHostsFan"> <Name>Fujitsu Out-Of-Band Fan Group Hosts Fan</Name> <Description>Fujitsu Out-Of-Band Fan Group Hosts Fan Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroupHostsFanNotPresent"> <Name>Fujitsu Out-Of-Band Fan Group Hosts Not Present Fan</Name> <Description>Fujitsu Out-Of-Band Fan Group Hosts Not Present Fan Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"> <Name>Fujitsu Out-Of-Band Mainboard</Name> <Description>The mainboard of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"SubElementID="SerialNumber"> <Name>Serial Number</Name> <Description>The Serial Number of the Fujitsu mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"SubElementID="PartNumber"> <Name>Part Number</Name> <Description>The Part Number of the Fujitsu mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"SubElementID="Manufacturer"> <Name>Manufacturer</Name> <Description>The Manufacturer of the Fujitsu mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"SubElementID="ManufacturingDate"> <Name>Manufacturing Date</Name> <Description>The Manufacturing Date of the Fujitsu mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"SubElementID="Model"> <Name>Model</Name> <Description>The Model of the Fujitsu mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard"SubElementID="Version"> <Name>Version</Name> <Description>The version of the Fujitsu mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsMainboard"> <Name>Fujitsu Out-Of-Band Server Hosts Mainboard</Name> <Description>Fujitsu Out-Of-Band Server Hosts Mainboard Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"> <Name>Fujitsu Out-Of-Band Power Supply</Name> <Description>The Power Supply of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"SubElementID="SerialNumber"> <Name>Serial Number</Name> <Description>The Serial Number of the Fujitsu Power Supply</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"SubElementID="PartNumber"> <Name>Part Number</Name> <Description>The Part Number of the Fujitsu Power Supply</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"SubElementID="Manufacturer"> <Name>Manufacturer</Name> <Description>The Manufacturer of the Fujitsu Power Supply</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"SubElementID="ManufacturingDate"> <Name>Manufacturing Date</Name> <Description>The Manufacturing Date of the Fujitsu Power Supply</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"SubElementID="Model"> <Name>Model</Name> <Description>The Model of the Fujitsu Power Supply</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupply"SubElementID="Version"> <Name>Version</Name> <Description>The version of the Fujitsu Power Supply</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroup"> <Name>Fujitsu Out-Of-Band Power Supply Group</Name> <Description>Fujitsu Out-Of-Band Power Supply Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsPowerSupplyGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Power Supply Group</Name> <Description>Fujitsu Out-Of-Band Server Hosts Power Supply Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroupHostsPowerSupply"> <Name>Fujitsu Out-Of-Band Power Supply Group Hosts Power Supply</Name> <Description>Fujitsu Out-Of-Band Power Supply Group Hosts Power Supply Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroupHostsPowerSupplyNotPresent"> <Name>Fujitsu Out-Of-Band Power Supply Group Hosts Not Present Power Supply</Name> <Description>Fujitsu Out-Of-Band Power Supply Group Hosts Not Present Power Supply Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.iRMCDeviceHostsServer"> <Name>Fujitsu iRMC Device hosts Out-Of-Band Server</Name> <Description>Fujitsu iRMC Device hosts Out-Of-Band Server Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsCommunicationMonitor"> <Name>Fujitsu Out-Of-Band Server Hosts Communication Monitor</Name> <Description>Server Hosts Communication Monitor Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Processor To Processor Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Processor to Processor Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Memory To Memory Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Memory to Memory Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Fan To Fan Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Fan to Fan Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Power Supply To Power Supply Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Power Supply to Power Supply Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorGroupToServerStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Processor Group To Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Processor Group to Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryGroupToServerStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Memory Group To Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Memory Group to Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanGroupToServerStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Fan Group To Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Fan Group to Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyGroupToServerStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Power Supply Group To Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Power Supply Group to Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerToiRmcDeviceStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Server To iRMC Device Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Out-Of-Band Server to Fujitsu iRMC Device</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CommunicationMonitorToServerStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Communication Monitor to Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up Communication Monitor to Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscovery"> <Name>Fujitsu Out-Of-Band Server Discovery</Name> <Description>Discovery for the Fujitsu Out-Of-Band Server and its components.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SmashDeviceDiscovery"> <Name>Microsoft SMASH Device Discovery for Fujitsu Out-Of-Band Servers</Name> <Description>Discover Microsoft SMASH device with correct properties for a Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroup"> <Name>Out-Of-Band Servers Group</Name> <Description>Fujitsu Out-Of-Band All Out-Of-Band Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroup"> <Name>Out-Of-Band BX Servers Group</Name> <Description>Fujitsu Out-Of-Band BX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupContainsBXServer"> <Name>Fujitsu Out-Of-Band BX Servers Group Contains Out-Of-Band BX Server Relationship</Name> <Description>Fujitsu Out-Of-Band BX Servers Group Contains Out-Of-Band BX Server Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroup"> <Name>Out-Of-Band CX Servers Group</Name> <Description>Fujitsu Out-Of-Band CX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupContainsCXServer"> <Name>Fujitsu Out-Of-Band CX Servers Group Contains Fujitsu Out-Of-Band CX Server Relationship</Name> <Description>Fujitsu Out-Of-Band CX Servers Group Contains Fujitsu Out-Of-Band CX Server Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroup"> <Name>Out-Of-Band RX Servers Group</Name> <Description>Fujitsu Out-Of-Band RX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupContainsRXServer"> <Name>Fujitsu Out-Of-Band RX Servers Group Contains Fujitsu Out-Of-Band RX Server Relationship</Name> <Description>Fujitsu Out-Of-Band RX Servers Group Contains Fujitsu Out-Of-Band RX Server Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroup"> <Name>Out-Of-Band SX Servers Group</Name> <Description>Fujitsu Out-Of-Band SX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupContainsSXServer"> <Name>Fujitsu Out-Of-Band SX Servers Group Contains Fujitsu Out-Of-Band Server SX Relationship</Name> <Description>Fujitsu Out-Of-Band SX Servers Group Contains Fujitsu Out-Of-Band Server SX Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroup"> <Name>Out-Of-Band TX Servers Group</Name> <Description>Fujitsu Out-Of-Band TX Servers Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupContainsTXServer"> <Name>Fujitsu Out-Of-Band TX Servers Group Contains Fujitsu Out-Of-Band TX Server Relationship</Name> <Description>Fujitsu Out-Of-Band TX Servers Group Contains Fujitsu Out-Of-Band TX Server Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroup"> <Name>Out-Of-Band Other Servers Group</Name> <Description>Fujitsu Other Out-Of-Band Servers Group (not BX, CX, RX, SX or TX servers)</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupContainsXXServer"> <Name>Fujitsu Out-Of-Band Other Servers Group Contains other Fujitsu Out-Of-Band Server Relationship</Name> <Description>Fujitsu Other Out-Of-Band Servers Group Contains other Fujitsu Out-Of-Band Server Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsPYServersGroup"> <Name>Fujitsu All Servers Group Contains Fujitsu Out-Of-Band Servers Group Relationship</Name> <Description>Fujitsu All Servers Group Contains Fujitsu Out-Of-Band Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsBXServersGroup"> <Name>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band BX Servers Group Relationship</Name> <Description>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band BX Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsCXServersGroup"> <Name>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band CX Servers Group Relationship</Name> <Description>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band CX Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsRXServersGroup"> <Name>Fujitsu Out-Of-Band Servers Group Contains PRIMERGY RX Out-Of-Band RX Servers Group Relationship</Name> <Description>Fujitsu Out-Of-Band Servers Group Contains PRIMERGY RX Out-Of-Band RX Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsSXServersGroup"> <Name>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band SX Servers Group Relationship</Name> <Description>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band SX Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsTXServersGroup"> <Name>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band TX Servers Group Relationship</Name> <Description>Fujitsu Out-Of-Band Servers Group Contains Fujitsu Out-Of-Band TX Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupContainsXXServersGroup"> <Name>Fujitsu Out-Of-Band Servers Group Contains other Out-Of-Band Servers Group Relationship</Name> <Description>Fujitsu Out-Of-Band Servers Group Contains other Out-Of-Band Servers Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateInvalid_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {2}: '{0}' Health State Information Not Valid</Name> <Description>The Health State Valid Monitor has detected that the reported Health State information for Component Status '{0}' of the Out-Of-Band Server '{3}' with IP address {2} cannot be mapped to a valid health state (Success/Warning/Error) and previously retrieved data is stale. This is typically the case when the 'Identify' button has been pressed for the Component Status '{0}'. Please check {1} to correct this problem.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {2}: '{0}' Component Status Health Alert</Name> <Description>The Component Status Health Monitor has detected a problem with the Component Status '{0}' of the Out-Of-Band Server '{3}' with IP address {2}. Please check the iRMC EventLog from {1} for alert entries related to the component the Component Status '{0}' is associated with and other alert context or detail information.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent.HealthStateInvalid_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {1}: '{0}' Health State Information Not Valid</Name> <Description>The Health State Valid Monitor has detected that the reported Health State information for Hardware Component '{0}' of the Out-Of-Band Server '{3}' with IP address {1} cannot be mapped to a valid health state (Success/Warning/Error) and previously retrieved data is stale. This is typically the case when the 'Identify' button has been pressed for the associated Hardware Component Status '{0}'. Please check {2} to correct this problem.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.HardwareComponent_AlertMessageResourceID"> <Name>Fujitsu Out-Of-Band {1}: '{0}' Hardware Component Health Alert</Name> <Description>The Hardware Health Monitor has detected a problem with '{0}' of the Out-Of-Band Server '{3}' with IP address {1}. Please check the iRMC EventLog from {2} for alert entries related to '{0}' and other alert context or detail information.</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMonitor"> <Name>Fujitsu Out-Of-Band Generic Component Status Health Monitor</Name> <Description>Fujitsu Out-Of-Band Component Status Health Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMonitor"SubElementID="HealthOK"> <Name>HealthOK</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMonitor"SubElementID="HealthError"> <Name>HealthError</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMonitor"SubElementID="HealthWarning"> <Name>HealthWarning</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateValid.Monitor"> <Name>Fujitsu Out-Of-Band Generic Component Status Health State Valid Monitor</Name> <Description>Fujitsu Out-Of-Band Component Status Health State Valid Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateValid.Monitor"SubElementID="HealthStateValid"> <Name>HealthState Valid</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateValid.Monitor"SubElementID="HealthStateUnknown"> <Name>HealthState Unknown</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponentMonitor"> <Name>Fujitsu Out-Of-Band Processor Health Monitor</Name> <Description>Fujitsu Out-Of-Band Processor Hardware Component Health Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponentMonitor"SubElementID="HealthOK"> <Name>HealthOK</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponentMonitor"SubElementID="HealthError"> <Name>HealthError</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponentMonitor"SubElementID="HealthWarning"> <Name>HealthWarning</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponentMonitor"> <Name>Fujitsu Out-Of-Band Memory Module Health Monitor</Name> <Description>Fujitsu Out-Of-Band Memory Hardware Component Health Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponentMonitor"SubElementID="HealthOK"> <Name>HealthOK</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponentMonitor"SubElementID="HealthError"> <Name>HealthError</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponentMonitor"SubElementID="HealthWarning"> <Name>HealthWarning</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponentMonitor"> <Name>Fujitsu Out-Of-Band Fan Health Monitor</Name> <Description>Fujitsu Out-Of-Band Fan Hardware Component Health Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponentMonitor"SubElementID="HealthOK"> <Name>HealthOK</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponentMonitor"SubElementID="HealthError"> <Name>HealthError</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponentMonitor"SubElementID="HealthWarning"> <Name>HealthWarning</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponentMonitor"> <Name>Fujitsu Out-Of-Band Power Supply Health Monitor</Name> <Description>Fujitsu Out-Of-Band Power Supply Hardware Component Health Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponentMonitor"SubElementID="HealthOK"> <Name>HealthOK</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponentMonitor"SubElementID="HealthError"> <Name>HealthError</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponentMonitor"SubElementID="HealthWarning"> <Name>HealthWarning</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponent.HealthStateValid.Monitor"> <Name>Fujitsu Out-Of-Band Processor Health State Valid Monitor</Name> <Description>Fujitsu Out-Of-Band Processor Hardware Component Health State Valid Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateValid"> <Name>HealthState Valid</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateUnknown"> <Name>HealthState Unknown</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponent.HealthStateValid.Monitor"> <Name>Fujitsu Out-Of-Band Memory Module Health State Valid Monitor</Name> <Description>Fujitsu Out-Of-Band Memory Hardware Component Health State Valid Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateValid"> <Name>HealthState Valid</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateUnknown"> <Name>HealthState Unknown</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponent.HealthStateValid.Monitor"> <Name>Fujitsu Out-Of-Band Fan Health State Valid Monitor</Name> <Description>Fujitsu Out-Of-Band Fan Hardware Component Health State Valid Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateValid"> <Name>HealthState Valid</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateUnknown"> <Name>HealthState Unknown</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponent.HealthStateValid.Monitor"> <Name>Fujitsu Out-Of-Band Power Supply Health State Valid Monitor</Name> <Description>Fujitsu Out-Of-Band Power Supply Hardware Component Health State Valid Monitor</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateValid"> <Name>HealthState Valid</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponent.HealthStateValid.Monitor"SubElementID="HealthStateUnknown"> <Name>HealthState Unknown</Name> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.MonitorType"> <Name>Fujitsu Out-Of-Band Component Status Health Monitor Type</Name> <Description>Fujitsu Out-Of-Band Component Status Health Monitor Type</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.MonitorType"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Fujitsu Out-Of-Band Component Health Monitor Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.MonitorType"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Fujitsu Out-Of-Band Component Health Monitor Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.HealthStateValid.MonitorType"> <Name>Fujitsu Out-Of-Band Component Status Health State Valid Monitor Type</Name> <Description>Fujitsu Out-Of-Band Component Status Health State Valid Monitor Type</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.HealthStateValid.MonitorType"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Fujitsu Out-Of-Band Component Health State Valid Monitor Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.HealthStateValid.MonitorType"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Fujitsu Out-Of-Band Component Health State Valid Monitor Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"> <Name>Fujitsu Out-Of-Band Filtered Hardware Component Health Monitor Type</Name> <Description>Fujitsu Out-Of-Band Filtered Hardware Component Health Monitor Type</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Fujitsu Out-Of-Band Hardware Component Health Monitor Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponentMonitor"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Fujitsu Out-Of-Band Hardware Component Health Monitor Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"> <Name>Fujitsu Out-Of-Band Hardware Component Health State Valid Monitor Type</Name> <Description>Fujitsu Out-Of-Band Hardware Component Health State Valid Monitor Type</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"SubElementID="TimeoutSeconds"> <Name>Timeout Seconds</Name> <Description>Fujitsu Out-Of-Band Hardware Component Health State Valid Monitor Timeout Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.HealthStateValid.MonitorType"SubElementID="IntervalSeconds"> <Name>Interval Seconds</Name> <Description>Fujitsu Out-Of-Band Hardware Component Health State Valid Monitor Interval Seconds</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredHardwareComponent.DataSource"> <Name>Fujitsu Out-Of-Band Hardware Component Data Source</Name> <Description>Fujitsu Out-Of-Band Hardware Component Data Source</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FilteredComponentStatus.DataSource"> <Name>Fujitsu Out-Of-Band Component StatusData Source</Name> <Description>Fujitsu Out-Of-Band Component Status Data Source</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Component</Name> <Description>An abstract single not present component of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentNotPresent"SubElementID="ID"> <Name>ID</Name> <Description>The not present component ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentNotPresent"SubElementID="Status"> <Name>Status</Name> <Description>Status of the not present component</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Processor</Name> <Description>A single Processor of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryModuleNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Memory</Name> <Description>A single Memory Module of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Fan</Name> <Description>A Not Present Fan of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Power Supply</Name> <Description>A Not Present Power Supply of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Component Status</Name> <Description>An abstract single not present component status of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="ID"> <Name>ID</Name> <Description>The not present component status ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="Status"> <Name>Status</Name> <Description>Status of the not present Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="SensorType"> <Name>Sensor Type</Name> <Description>Sensor Type of the not present Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="EntityId"> <Name>Entity ID</Name> <Description>Entity ID of the not present Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="EntityInstance"> <Name>Entity Instance</Name> <Description>Entity Instance of the not present Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="ManagementUrl"> <Name>Management URL</Name> <Description>URL for Out-Of-Band Management of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusNotPresent"SubElementID="ServerName"> <Name>Server Name</Name> <Description>Fujitsu Out-Of-Band Server of the Not Present Component Status Instance</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotNotPresent"> <Name>Fujitsu Out-Of-Band Empty Drive Slot</Name> <Description>An empty Drive Slot of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotNotPresent"> <Name>Fujitsu Out-Of-Band Empty PCIe Slot</Name> <Description>An empty PCIe Slot of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryNotPresent"> <Name>Fujitsu Out-Of-Band Not Present Battery</Name> <Description>A Not Present Battery of the Fujitsu server (e.g. BBU for RAID card)</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup"> <Name>Fujitsu Out-Of-Band Voltage Component Status Group</Name> <Description>Fujitsu Out-Of-Band Voltage Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroup"SubElementID="ID"> <Name>Group ID</Name> <Description>Component Status Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroup"> <Name>Fujitsu Out-Of-Band Temperature Component Status Group</Name> <Description>Fujitsu Out-Of-Band Temperature Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroup"SubElementID="ID"> <Name>Group ID</Name> <Description>Component Status Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroup"> <Name>Fujitsu Out-Of-Band Drive Slot Component Status Group</Name> <Description>Fujitsu Out-Of-Band Drive Slot Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroup"SubElementID="ID"> <Name>Group ID</Name> <Description>Component Status Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroup"> <Name>Fujitsu Out-Of-Band PCIe Slot Component Status Group</Name> <Description>Fujitsu Out-Of-Band PCIe Slot Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroup"SubElementID="ID"> <Name>Group ID</Name> <Description>Component Status Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroup"> <Name>Fujitsu Out-Of-Band Software Component Status Group</Name> <Description>Fujitsu Out-Of-Band Software Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroup"SubElementID="ID"> <Name>Group ID</Name> <Description>Component Status Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroup"> <Name>Fujitsu Out-Of-Band Power Unit Component Status Group</Name> <Description>Fujitsu Out-Of-Band Power Unit Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroup"SubElementID="ID"> <Name>Group ID</Name> <Description>Component Status Group ID</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"> <Name>Fujitsu Out-Of-Band Component Status</Name> <Description>A single component status (sensor) of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"SubElementID="ID"> <Name>ID</Name> <Description>The Name of the Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"SubElementID="SensorType"> <Name>Sensor Type</Name> <Description>Sensor Type of the Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"SubElementID="EntityId"> <Name>Entity ID</Name> <Description>Entity ID of the Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"SubElementID="EntityInstance"> <Name>Entity Instance</Name> <Description>Entity Instance of the Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"SubElementID="ManagementUrl"> <Name>Management URL</Name> <Description>URL for Out-Of-Band Management of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus"SubElementID="ServerName"> <Name>Server Name</Name> <Description>Fujitsu Out-Of-Band Server containing this Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyTemperatureComponentStatus"> <Name>Fujitsu Out-Of-Band Generic Temperature Component Status</Name> <Description>Fujitsu Out-Of-Band Generic Temperature Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyVoltageComponentStatus"> <Name>Fujitsu Out-Of-Band Generic Voltage Component Status</Name> <Description>Fujitsu Out-Of-Band Generic Voltages Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyPowerRelatedComponentStatus"> <Name>Fujitsu Out-Of-Band Generic Power Related Component Status</Name> <Description>Fujitsu Out-Of-Band Generic Power Related Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AnyOtherComponentStatus"> <Name>Fujitsu Out-Of-Band Generic Other Component Status</Name> <Description>Fujitsu Out-Of-Band Generic Other Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.AirInletComponentStatus"> <Name>Fujitsu Out-Of-Band Air Inlet Component Status</Name> <Description>Fujitsu Out-Of-Band Air Inlet Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureComponentStatus"> <Name>Fujitsu Out-Of-Band Temperature Component Status</Name> <Description>Fujitsu Out-Of-Band Temperatures Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageComponentStatus"> <Name>Fujitsu Out-Of-Band Voltage Component Status</Name> <Description>Fujitsu Out-Of-Band Voltages Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryComponentStatus"> <Name>Fujitsu Out-Of-Band Battery Component Status</Name> <Description>Fujitsu Out-Of-Band Battery Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorComponentStatus"> <Name>Fujitsu Out-Of-Band Processor Component Status</Name> <Description>Fujitsu Out-Of-Band Processor Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryComponentStatus"> <Name>Fujitsu Out-Of-Band Memory Component Status</Name> <Description>Fujitsu Out-Of-Band Memory Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanComponentStatus"> <Name>Fujitsu Out-Of-Band Fan Component Status</Name> <Description>Fujitsu Out-Of-Band Fan Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyComponentStatus"> <Name>Fujitsu Out-Of-Band Power Supply Component Status</Name> <Description>Fujitsu Out-Of-Band Power Supply Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatus"> <Name>Fujitsu Out-Of-Band PCIe Slot Component Status</Name> <Description>Fujitsu Out-Of-Band PCIe Slot Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatus"> <Name>Fujitsu Out-Of-Band Drive Slot Component Status</Name> <Description>Fujitsu Out-Of-Band Drive Slot Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"> <Name>Fujitsu Out-Of-Band Management Controller Component Status</Name> <Description>Fujitsu Out-Of-Band Management Controller Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatus"SubElementID="FirmwareVersion"> <Name>Firmware Version</Name> <Description>Firmware Version of the Management Controller represented by the Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatus"> <Name>Fujitsu Out-Of-Band Management Software Component Status</Name> <Description>Fujitsu Out-Of-Band Management Software Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatus"> <Name>Fujitsu Out-Of-Band Power Monitoring Component Status</Name> <Description>Fujitsu Out-Of-Band Power Monitoring Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatus"> <Name>Fujitsu Out-Of-Band Power Unit Component Status</Name> <Description>Fujitsu Out-Of-Band Power Unit Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"> <Name>Fujitsu Out-Of-Band BIOS Component Status</Name> <Description>Fujitsu Out-Of-Band BIOS Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatus"SubElementID="BiosVersion"> <Name>BIOS Version</Name> <Description>BIOS Version of the Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatus"> <Name>Fujitsu Out-Of-Band Other Component Status</Name> <Description>Fujitsu Out-Of-Band Other Component Status</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"> <Name>Fujitsu Out-Of-Band Other Component Status Group</Name> <Description>Fujitsu Out-Of-Band Component Status Group of the Fujitsu server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroup"SubElementID="ID"> <Name>ID</Name> <Description>The Name of the component status group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageStatusGroupHostsVoltageComponentStatus"> <Name>Fujitsu Out-Of-Band Voltage Component Status Group Hosts Voltage Component Status</Name> <Description>Fujitsu Out-Of-Band Voltage Status Group Hosts Fujitsu Out-Of-Band Voltage Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageStatusGroupHostsBatteryComponentStatus"> <Name>Fujitsu Out-Of-Band Voltage Component Status Group Hosts Battery Component Status</Name> <Description>Fujitsu Out-Of-Band Voltage Status Group Hosts Fujitsu Out-Of-Band Battery Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageStatusGroupHostsBatteryNotPresent"> <Name>Fujitsu Out-Of-Band Voltage Component Status Group Hosts Not Present Battery</Name> <Description>Fujitsu Out-Of-Band Voltage Status Group Hosts Fujitsu Out-Of-Band Not Present Battery Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureStatusGroupHostsTemperatureComponentStatus"> <Name>Fujitsu Out-Of-Band Temperature Component Status Group Hosts Temperature Component Status</Name> <Description>Fujitsu Out-Of-Band Temperature Status Group Hosts Fujitsu Out-Of-Band Temperature Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotStatusGroupHostsDriveSlotComponentStatus"> <Name>Fujitsu Out-Of-Band Drive Slot Component Status Group Hosts Drive Slot Component Status</Name> <Description>Fujitsu Out-Of-Band Drive Slot Status Group Hosts Fujitsu Out-Of-Band Drive Slot Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotStatusGroupHostsDriveSlotNotPresent"> <Name>Fujitsu Out-Of-Band PCIe Slot Component Status Group Hosts Not Present Drive Slot Component Status</Name> <Description>Fujitsu Out-Of-Band PCIe Slot Status Group Hosts Fujitsu Out-Of-Band Not Present Drive Slot Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotStatusGroupHostsPciSlotComponentStatus"> <Name>Fujitsu Out-Of-Band PCIe Slot Component Status Group Hosts PCIe Slot Component Status</Name> <Description>Fujitsu Out-Of-Band PCIe Slot Status Group Hosts Fujitsu Out-Of-Band PCIe Slot Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotStatusGroupHostsPciSlotNotPresent"> <Name>Fujitsu Out-Of-Band PCIe Slot Component Status Group Hosts Not Present PCIe Slot Component Status</Name> <Description>Fujitsu Out-Of-Band PCIe Slot Status Group Hosts Fujitsu Out-Of-Band Not Present PCIe Slot Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareStatusGroupHostsMgmtSoftwareComponentStatus"> <Name>Fujitsu Out-Of-Band Software Component Status Group Hosts Software Component Status</Name> <Description>Fujitsu Out-Of-Band Software Status Group Hosts Fujitsu Out-Of-Band Software Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitStatusGroupHostsPowerUnitComponentStatus"> <Name>Fujitsu Out-Of-Band Power Unit Component Status Group Hosts Power Unit Component Status</Name> <Description>Fujitsu Out-Of-Band Power Unit Status Group Hosts Fujitsu Out-Of-Band Power Unit Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsTemperatureComponentGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Temperature Component Status Group</Name> <Description>Fujitsu Out-Of-Band Server Hosts Fujitsu Out-Of-Band Temperature Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsVoltageComponentGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Voltage Component Status Group</Name> <Description>Fujitsu Out-Of-Band Server Hosts Fujitsu Out-Of-Band Voltage Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MainboardReferencesVoltageComponentGroup"> <Name>Fujitsu Out-Of-Band Mainboard references Voltage Component Status Group</Name> <Description>Fujitsu Out-Of-Band Mainboard references Fujitsu Out-Of-Band Voltage Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerHostsOtherComponentStatusGroup"> <Name>Fujitsu Out-Of-Band Server Hosts Other Component Status Group</Name> <Description>Fujitsu Out-Of-Band Server Hosts Fujitsu Out-Of-Band Other Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsDriveSlotComponentGroup"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts Drive Slot Component Status Group</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band Drive Slot Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsPciSlotComponentGroup"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts PCI/PCIe Slot Component Status Group</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band PCI/PCIe Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsMgmtSoftwareComponentGroup"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts Management Software Component Status Group</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band Management Software Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsPowerUnitComponentGroup"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts Power Unit Component Status Group</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band Power Unit Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsMgmtCtrlComponentStatus"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts Management Controller Component Status Group</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band Management Controller Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsPowerMonitoringComponentStatus"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts Power Monitoring Component Status Group</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band Power Monitoring Component Status Group Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsBiosComponentStatus"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts BIOS Component Status</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band BIOS Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupHostsOtherComponentStatus"> <Name>Fujitsu Out-Of-Band Other Component Status Group Hosts Other Component Status</Name> <Description>Fujitsu Out-Of-Band Other Component Status Group Hosts Fujitsu Out-Of-Band Other Component Status Relationship</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TemperatureComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Temperature Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band Temperature Component Status to Fujitsu Out-Of-Band Temperature Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BatteryComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Battery Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Battery Component Status to Voltage Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.VoltageComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Voltage Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Voltage Component Status to Voltage Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.DriveSlotComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Drive Slot Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Drive Slot Component Status to Drive Slot Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PciSlotComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band PCI Slot Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from PCI Slot Component Status to PCI Slot Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Power Unit Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Power Unit Component Status to Power Unit Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtSoftwareComponentStatusToGroupStatusHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Management Software Component Status to Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Management Software Component Status to Management Software Component Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusTemperatureGroupToServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Temperature Component Status Group to Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Fujitsu Out-Of-Band Temperature Component Status Group to Fujitsu Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroupToServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Voltage Component Status Group to Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Voltage Component Status Group to Out-Of-Band Server</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusVoltageGroupToMainboardHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Voltage Component Status Group to Out-Of-Band Mainboard Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Voltage Component Status Group to Out-Of-Band Mainboard</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusDriveSlotGroupToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Drive Slot Component Status Group to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Drive Slot Component Status Group to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPciSlotGroupToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band PCI Slot Component Status Group to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from PCI Slot Component Status Group to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusPowerUnitGroupToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Power Unit Component Status Group to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Power Unit Component Status Group to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMgmtSoftwareGroupToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Management Software Component Status Group to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Management Software Component Status Group to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MgmtCtrlComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Management Controller Component Status to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Management Controller Component Status to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerMonitoringComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Power Monitoring Component Status to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Power Monitoring Component Status to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BiosComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band BIOS Component Status Health to Other Component Status Group Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from BIOS Component Status to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusToOtherComponentStatusGroupHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Other Component Status to Other Component Status Group Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Other Component Status to Other Component Status Group</Description> </DisplayString> <DisplayStringElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.OtherComponentStatusGroupToOutOfBandServerHealthRollupMonitor"> <Name>Fujitsu Out-Of-Band Other Component Status Group to Out-Of-Band Server Health Rollup Monitor</Name> <Description>This Health Rollup Monitor rolls up from Other Component Status Group to Out-Of-Band Server</Description> </DisplayString> </DisplayStrings> <KnowledgeArticles> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorRepeatedCommunicationProblem"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if there have been multiple communication problems logged within a certain time period when accessing the Processor information of the Fujitsu Out-Of-Band Server . This typically indicates a networking problem or an internal resource problem with the iRMC itself.</maml:para> <maml:para>Note: You have to manually reset the health state of the Processor Group Object of the Fujitsu Out-Of-Band Server!</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC is no longer answering any requests over the network.</maml:para> <maml:para>The iRMC Web Server is no longer reliable answering https requests over the network.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check if the iRMC can be reached over the network with ping. If not, please contact your Network Administrator.</maml:para> <maml:para>Check if the iRMC Web Interface can be reached over HTTP or HTTPS. If the iRMC does respond to pings but not to HTTP or HTTPS requests this typically indicated an internal resource problem of the iRMC. </maml:para> <maml:para>Check if the iRMC can be reached over the network with an IPMI based tool.</maml:para> <maml:para>If the problem persists, reboot the iRMC (and not the Out-Of-Band Server!) with the help of an IPMI tool such as ipmiview32/ipmiview64 from Fujitsu or any Open Source tool for IPMI such as ipmiutil (see http://ipmiutil.sourceforge.net/ ), FreeIPMI ( see http://www.gnu.org/software/freeipmi/) or ipmitool (see http://sourceforge.net/projects/ipmitool/) .</maml:para> <maml:para>If you do not have access to an IPMI tool or the iRMC does not answer to IPMI requests you need to A/C fail the server by unplugging all power cables and wait at least 60 seconds before connecting the server to your power source again.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryRepeatedCommunicationProblem"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if there have been multiple communication problems logged within a certain time period when accessing the Memory information of the Fujitsu Out-Of-Band Server. This typically indicates a networking problem or an internal resource problem with the iRMC itself.</maml:para> <maml:para>Note: You have to manually reset the health state of the Memory Group Object of the Fujitsu Out-Of-Band Server!</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC is no longer answering any requests over the network.</maml:para> <maml:para>The iRMC Web Server is no longer reliable answering https requests over the network.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check if the iRMC can be reached over the network with ping. If not, please contact your Network Administrator.</maml:para> <maml:para>Check if the iRMC Web Interface can be reached over HTTP or HTTPS. If the iRMC does respond to pings but not to HTTP or HTTPS requests this typically indicated an internal resource problem of the iRMC. </maml:para> <maml:para>Check if the iRMC can be reached over the network with an IPMI based tool.</maml:para> <maml:para>If the problem persists, reboot the iRMC (and not the Out-Of-Band Server!) with the help of an IPMI tool such as ipmiview32/ipmiview64 from Fujitsu or any Open Source tool for IPMI such as ipmiutil (see http://ipmiutil.sourceforge.net/ ), FreeIPMI ( see http://www.gnu.org/software/freeipmi/) or ipmitool (see http://sourceforge.net/projects/ipmitool/) .</maml:para> <maml:para>If you do not have access to an IPMI tool or the iRMC does not answer to IPMI requests you need to A/C fail the server by unplugging all power cables and wait at least 60 seconds before connecting the server to your power source again.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanRepeatedCommunicationProblem"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if there have been multiple communication problems logged within a certain time period when accessing the Fan information of the Fujitsu Out-Of-Band Server. This typically indicates a networking problem or an internal resource problem with the iRMC itself.</maml:para> <maml:para>Note: You have to manually reset the health state of the Fan Group Object of the Fujitsu Out-Of-Band Server!</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC is no longer answering any requests over the network.</maml:para> <maml:para>The iRMC Web Server is no longer reliable answering https requests over the network.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check if the iRMC can be reached over the network with ping. If not, please contact your Network Administrator.</maml:para> <maml:para>Check if the iRMC Web Interface can be reached over HTTP or HTTPS. If the iRMC does respond to pings but not to HTTP or HTTPS requests this typically indicated an internal resource problem of the iRMC. </maml:para> <maml:para>Check if the iRMC can be reached over the network with an IPMI based tool.</maml:para> <maml:para>If the problem persists, reboot the iRMC (and not the Out-Of-Band Server!) with the help of an IPMI tool such as ipmiview32/ipmiview64 from Fujitsu or any Open Source tool for IPMI such as ipmiutil (see http://ipmiutil.sourceforge.net/ ), FreeIPMI ( see http://www.gnu.org/software/freeipmi/) or ipmitool (see http://sourceforge.net/projects/ipmitool/) .</maml:para> <maml:para>If you do not have access to an IPMI tool or the iRMC does not answer to IPMI requests you need to A/C fail the server by unplugging all power cables and wait at least 60 seconds before connecting the server to your power source again.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyRepeatedCommunicationProblem"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if there have been multiple communication problems logged within a certain time period when accessing the Power Supply information of the Fujitsu Out-Of-Band Server. This typically indicates a networking problem or an internal resource problem with the iRMC itself.</maml:para> <maml:para>Note: You have to manually reset the health state of the Power Supply Group Object of the Fujitsu Out-Of-Band Server!</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC is no longer answering any requests over the network.</maml:para> <maml:para>The iRMC Web Server is no longer reliable answering https requests over the network.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check if the iRMC can be reached over the network with ping. If not, please contact your Network Administrator.</maml:para> <maml:para>Check if the iRMC Web Interface can be reached over HTTP or HTTPS. If the iRMC does respond to pings but not to HTTP or HTTPS requests this typically indicated an internal resource problem of the iRMC. </maml:para> <maml:para>Check if the iRMC can be reached over the network with an IPMI based tool.</maml:para> <maml:para>If the problem persists, reboot the iRMC (and not the Out-Of-Band Server!) with the help of an IPMI tool such as ipmiview32/ipmiview64 from Fujitsu or any Open Source tool for IPMI such as ipmiutil (see http://ipmiutil.sourceforge.net/ ), FreeIPMI ( see http://www.gnu.org/software/freeipmi/) or ipmitool (see http://sourceforge.net/projects/ipmitool/) .</maml:para> <maml:para>If you do not have access to an IPMI tool or the iRMC does not answer to IPMI requests you need to A/C fail the server by unplugging all power cables and wait at least 60 seconds before connecting the server to your power source again.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusRepeatedCommunicationProblem"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if there have been multiple communication problems logged within a certain time period when accessing the Component Status information of the Fujitsu Out-Of-Band Server. This typically indicates a networking problem or an internal resource problem with the iRMC itself.</maml:para> <maml:para>Note: You have to manually reset the health state of the Fujitsu Out-Of-Band Server !</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC is no longer answering any requests over the network.</maml:para> <maml:para>The iRMC Web Server is no longer reliable answering https requests over the network.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check if the iRMC can be reached over the network with ping. If not, please contact your Network Administrator.</maml:para> <maml:para>Check if the iRMC Web Interface can be reached over HTTP or HTTPS. If the iRMC does respond to pings but not to HTTP or HTTPS requests this typically indicated an internal resource problem of the iRMC. </maml:para> <maml:para>Check if the iRMC can be reached over the network with an IPMI based tool.</maml:para> <maml:para>If the problem persists, reboot the iRMC (and not the Out-Of-Band Server!) with the help of an IPMI tool such as ipmiview32/ipmiview64 from Fujitsu or any Open Source tool for IPMI such as ipmiutil (see http://ipmiutil.sourceforge.net/ ), FreeIPMI ( see http://www.gnu.org/software/freeipmi/) or ipmitool (see http://sourceforge.net/projects/ipmitool/) .</maml:para> <maml:para>If you do not have access to an IPMI tool or the iRMC does not answer to IPMI requests you need to A/C fail the server by unplugging all power cables and wait at least 60 seconds before connecting the server to your power source again.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ScriptError.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>A Script from the Fujitsu Out-Of-Band Server Management Pack has detected a generic problem.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC of the Out-Of-Band Server has returned invalid or corrupt data which cannot be processed or has caused an exception.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check if this is a sporadic or reoccurring problem. Sporadic problems can be caused by network outages or when the iRMC is too busy to answer a request.</maml:para> <maml:para>If the problem reoccurs check if you still can access the iRMC with your default browser. If you cannot reach the iRMC with your default browser, check network connectivity. If you can open the iRMC Web Interface and you still have problems try restarting the iRMC from the Web Interface.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Error.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>There was a problem with the HTTPS communication to the iRMC of the Fujitsu Out-Of-Band Server.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC of the Out-Of-Band Server cannot be reached over the network.</maml:para> <maml:para>The connection to the iRMC of the Out-Of-Band Server cannot be established in a secure manner or is aborted unexpectedly.</maml:para> <maml:para>If this is a reoccurring problem this might also indicate a potential problem with the used Certificate or Certificate trust.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Manually check if you can open the iRMC Web Interface over HTTPS. You can do so by clicking on the 'Management URL' of the Out-Of-Band Server.</maml:para> <maml:para>Check if the connection is very slow compared to your regular access which might indicate a load or resource problem of the iRMC. If this is the case, try resetting the iRMC from the Web Interface.</maml:para> <maml:para>Check if the used Certificate in the iRMC is trusted and not expired.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.Timeout.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>A HTTPS request sent to the iRMC of the Fujitsu Out-Of-Band Server has exceeded a configured timeout value. As a result, the requested information is not available for processing.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC of the Out-Of-Band Server can no longer be reached over the network.</maml:para> <maml:para>The iRMC of the Out-Of-Band Server is busy with other tasks and cannot answer in a timely manner.</maml:para> <maml:para>High network latency resulting in slow responses.</maml:para> <maml:para>If this is a reoccurring problem this might also indicate a potential problem with the configured monitor timeout values.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Manually check if you can open the iRMC Web Interface over HTTPS. You can do so by clicking on the 'Management URL' of the Out-Of-Band Server.</maml:para> <maml:para>Check if the connection is very slow compared to your regular access which might indicate a load or resource problem of the iRMC. If this is the case, try resetting the iRMC from the Web Interface.</maml:para> <maml:para>Check if you have overridden the timeout value of the monitors of the Fujitsu Out-Of-Band Server with a lower than the default value.</maml:para> <maml:para>Reset the timeout value of the monitors of the Fujitsu Out-Of-Band Server to the default value (e.g. disable configured overrides).</maml:para> <maml:para>Increase the timeout value of the monitors of the Fujitsu Out-Of-Band Server and check if this solves the problem.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.BmcBusy.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>The iRMC of the Fujitsu Out-Of-Band Server is too busy to handle HTTPS requests and has responded with status Code 503 (Service Unavailable).</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>This typically indicates a temporary or permanent load or resource problem of the embedded iRMC of the Out-Of-Band Server.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Manually check if you can open the iRMC Web Interface over HTTPS. You can do so by clicking on the 'Management URL' of the Out-Of-Band Server.</maml:para> <maml:para>Check if the connection is very slow compared to your regular access which might indicate a load or resource problem of the iRMC. If this is the case, try resetting the iRMC from the Web Interface.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.WebRequest.NoAccess.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>The iRMC of the Out-Of-Band Server did not accept the provided credentials for communication.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>If this is only a sporadic problem the iRMC might be too busy to handle the request correctly.</maml:para> <maml:para>If this is a permanent or repeated problem then the configured iRMC account might not have the required permission/privilege to access the required data.</maml:para> <maml:para>If this is a permanent or repeated problem then the username or password are incorrect or have changed since you configured the RunAs account for the Microsoft SMASH and WsMan device template.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check the iRMC internal Event Log for repeated 'Login failed' events with the IP address of your SCOM server and the configured username from the RunAs account.</maml:para> <maml:para>Check the credentials in the configured RunAs account for the used Microsoft SMASH and WsMan device template.</maml:para> <maml:para>Check the assigned privileges of the iRMC user account with the username from the RunAs account for the used Microsoft SMASH and WsMan device template.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Memory.NotInitialized.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>The Memory information of the Fujitsu Out-Of-Band Server is not correctly initialized. You need to reboot the Fujitsu Out-Of-Band Server to correct this problem.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC of the Fujitsu Out-Of-Band Server has lost the previously stored Memory information due to an internal iRMC reboot. To restore or update the Memory information please reboot the Fujitsu Out-Of-Band Server.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Reboot the Fujitsu Out-Of-Band Server.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.UnsupportedFirmware.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>The iRMC firmware version of the Fujitsu Out-Of-Band Server is not supported. Please update your iRMC firmware of the Fujitsu Out-Of-Band Server to correct this problem.</maml:para> <maml:para>For iRMC S4 based systems the minimum firmware version is 8.24F</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The iRMC firmware version of the Fujitsu Out-Of-Band Server is too old and not supported by this Management Pack.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Update the iRMC firmware of the Fujitsu Out-Of-Band Server.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CA.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>The used SSL certificate of the iRMC has not been issued by a trusted Certificate Authority (CA). Please update your iRMC SSL Certificate of the Fujitsu Out-Of-Band Server to correct this problem or specify 'Skip CA Check' in the discovery template.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The used SSL certificate of the iRMC has not been issued by a trusted Certificate Authority (CA).</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Update the iRMC SSL certificate of the Fujitsu Out-Of-Band Server with a certificate issued by a trusted Certificate Authority (CA) of your Public Key Infrastructure (PKI) with a correct and matching CommonName (CN).</maml:para> <maml:para>Add the used Certificate Authority from the iRMC SSL certificate to the list of trusted Root or Intermediate Certificate Authorities.</maml:para> <maml:para>Specify 'Skip CA Check' in the used discovery template.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.Certificate.CN.EventRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>The used SSL certificate of the iRMC does not contain the correct Common Name (CN) information. Please update your iRMC SSL Certificate of the Fujitsu Out-Of-Band Server to correct this problem or specify 'Skip CN Check' in the discovery template.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The used SSL certificate of the iRMC does not contain the correct Common Name (CN) information. E.g. the presented name does not match the IP address or DNS Name.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Update the iRMC SSL certificate of the Fujitsu Out-Of-Band Server with a certificate issued by trusted Certificate Authority (CA) of your Public Key Infrastructure (PKI) with a correct and matching Common Name (CN).</maml:para> <maml:para>Specify 'Skip CN Check' in the used discovery template.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupPRIMERGYServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupPRIMERGYServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupBXServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupBXServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupCXServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupCXServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupRXServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupRXServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupSXServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupSXServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupTXServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupTXServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupXXServersGroupMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.ServersGroupXXServersGroupMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupBXMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.BXServersGroupBXMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupCXMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.CXServersGroupCXMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupRXMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.RXServersGroupRXMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupSXMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.SXServersGroupSXMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupTXMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.TXServersGroupTXMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupXXMembershipRule"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu.Servers.PRIMERGY.OutOfBand.XXServersGroupXXMembershipRule</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>Fujitsu PRIMERGY Out-Of-Band Server Management Pack</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ServerDiscovery"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>ServerDiscovery discovers all Fujitsu Out-Of-Band Servers and components via the integrated Remote Management Controller iRMC S4.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.SmashDeviceDiscovery"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>SmashDeviceDiscovery discovers a Microsoft SMASH device for the Fujitsu Out-Of-Band Server with the missing properties UUID and Asset Tag.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatusMonitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the health state of the 'Component Status' instances available from the embedded iRMC in the Fujitsu Out-Of-Band Server. The 'Component Status' and has detected a problem with the associated component. A 'Component Status' can be associated with a single hardware component, or can consolidate multiple sensor instances into a single 'Component Status'.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>A 'Component Status' indicates a failed or prefail condition for the associated component.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check the iRMC EventLog on the Fujitsu Out-Of-Band Server for entries related to the component this 'Component Status' is associated with.</maml:para> <maml:para>Check the original component associated with the Component Status.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ComponentStatus.HealthStateValid.Monitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if the reported health state of the 'Component Status' instances of the Fujitsu Out-Of-Band Server can be mapped to a valid SCOM Health State (Success/Warning/Error) and has detected that the 'Identify' feature has been activated which cannot be mapped.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The 'Identify' feature for the 'Component Status' has been activated (e.g. the Lightpath LED is on) and the regular health state for the 'Component Status' cannot be determined.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Make sure the 'Identify' feature for the 'Component Status' has been turned off.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponentMonitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the Processor health state of the Fujitsu Out-Of-Band Server and has detected a problem.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>A Processor component has failed or is in prefail condition.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check the iRMC EventLog on the Fujitsu Out-Of-Band Server for entries related to the indicated Processor component.</maml:para> <maml:para>Check the indicated Processor component.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponentMonitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the Memory Module health state of the Fujitsu Out-Of-Band Server and has detected a problem.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>A Memory Module component has failed or is in prefail condition.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check the iRMC EventLog on the Fujitsu Out-Of-Band Server for entries related to the indicated Memory Module component.</maml:para> <maml:para>Check the indicated Memory Module component.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponentMonitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the Fan health state of the Fujitsu Out-Of-Band Server and has detected a problem.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>A Fan component has failed or is in prefail condition.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check the iRMC EventLog on the Fujitsu Out-Of-Band Server for entries related to the indicated Fan component.</maml:para> <maml:para>Check the indicated Fan component.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponentMonitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the Power Supply health state of the Fujitsu Out-Of-Band Server and has detected a problem.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>A Power Supply component has failed or is in prefail condition.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Check the iRMC EventLog on the Fujitsu Out-Of-Band Server for entries related to the indicated Power Supply component.</maml:para> <maml:para>Check the indicated Power Supply.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.ProcessorHardwareComponent.HealthStateValid.Monitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if the reported health state of Processor instances of the Fujitsu Out-Of-Band Server can be mapped to a valid SCOM Health State (Success/Warning/Error) and has detected that the 'Identify' feature has been activated which cannot be mapped.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The 'Identify' feature for the Processor 'Component Status' has been activated (e.g. the Lightpath LED is on) and the regular health state for the Processor component cannot be determined.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Make sure the 'Identify' feature for the Processor 'Component Status' has been turned off.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.MemoryHardwareComponent.HealthStateValid.Monitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if the reported health state of Memory instances of the Fujitsu Out-Of-Band Server can be mapped to a valid SCOM Health State (Success/Warning/Error) and has detected that the 'Identify' feature has been activated which cannot be mapped.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>The 'Identify' feature for the Memory 'Component Status' has been activated (e.g. the Lightpath LED is on) and the regular health state for the Memory component cannot be determined.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Make sure the 'Identify' feature for the Memory 'Component Status' has been turned off.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.FanHardwareComponent.HealthStateValid.Monitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if the reported health state of Fan instances of the Fujitsu Out-Of-Band Server can be mapped to a valid SCOM Health State (Success/Warning/Error) and has detected that the System Power State is 'off' or the 'Identify' feature has been activated which cannot be mapped.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>System Power State is 'off' and the regular health state for the Fan component cannot be determined.</maml:para> <maml:para>The 'Identify' feature for the Fan 'Component Status' has been activated (e.g. the Lightpath LED is on) and the regular health state for the Fan component cannot be determined.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Make sure the 'Identify' feature for the Fan 'Component Status' has been turned off.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> <KnowledgeArticleElementID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerSupplyHardwareComponent.HealthStateValid.Monitor"Visible="true"> <MamlContent> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Summary</maml:title> <maml:para>This monitor checks the if the reported health state of Power Supply instances of the Fujitsu Out-Of-Band Server can be mapped to a valid SCOM Health State (Success/Warning/Error) and has detected that the System Power State is 'off' or the 'Identify' feature has been activated which cannot be mapped.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Causes</maml:title> <maml:para>System Power State is 'off' and the regular health state for the Power Supply component cannot be determined.</maml:para> <maml:para>The 'Identify' feature for the Power Supply 'Component Status' has been activated (e.g. the Lightpath LED is on) and the regular health state for the Power Supply component cannot be determined.</maml:para> </maml:section> <maml:sectionxmlns:maml="http://schemas.microsoft.com/maml/2004/10"> <maml:title>Resolutions</maml:title> <maml:para>Make sure the 'Identify' feature for the Power Supply 'Component Status' has been turned off.</maml:para> </maml:section> </MamlContent> </KnowledgeArticle> </KnowledgeArticles> </LanguagePack> </LanguagePacks> <Resources> <AssemblyID="Res.DummyAssembly.BMC.WebInterface"Accessibility="Public"FileName="DummyAssembly.BMC.WebInterface"HasNullStream="true"QualifiedName="DummyAssembly.BMC.WebInterface" /> <AssemblyID="Res.DummyAssembly.BMC.SystemReport"Accessibility="Public"FileName="DummyAssembly.BMC.SystemReport"HasNullStream="true"QualifiedName="DummyAssembly.BMC.SystemReport" /> <AssemblyID="Res.DummyAssembly.BMC.Avr"Accessibility="Public"FileName="DummyAssembly.BMC.Avr"HasNullStream="true"QualifiedName="DummyAssembly.BMC.Avr" /> <AssemblyID="Res.DummyAssembly.Server.WebInterface"Accessibility="Public"FileName="DummyAssembly.Server.WebInterface"HasNullStream="true"QualifiedName="DummyAssembly.Server.WebInterface" /> <AssemblyID="Res.DummyAssembly.Server.SystemReport"Accessibility="Public"FileName="DummyAssembly.Server.SystemReport"HasNullStream="true"QualifiedName="DummyAssembly.Server.SystemReport" /> <AssemblyID="Res.DummyAssembly.Server.Avr"Accessibility="Public"FileName="DummyAssembly.Server.Avr"HasNullStream="true"QualifiedName="DummyAssembly.Server.Avr" /> <ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.MainboardDiagramIcon"FileName="Mainboard.80x80.png"Accessibility="Public"HasNullStream="false" /> <ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponentDiagramIcon"FileName="PowerSupplyWithCord.80x80.png"Accessibility="Public"HasNullStream="false" /> <ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitGroupDiagramIcon"FileName="PowerSupplyGroup2.png"Accessibility="Public"HasNullStream="false" /> <ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.Mainboard16Icon"FileName="Mainboard.16x16.png"Accessibility="Public"HasNullStream="false" /> <ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitComponent16Icon"FileName="PowerSupply.16x16.png"Accessibility="Public"HasNullStream="false" /> <ImageID="Fujitsu.Servers.PRIMERGY.OutOfBand.PowerUnitGroup16Icon"FileName="PowerSupplyGroupOther.16x16.png"Accessibility="Public"HasNullStream="false" /> </Resources> </ManagementPack>