論理ディスクの空き領域

Microsoft.Windows.Client.XP.LogicalDisk.FreeSpace (UnitMonitor)

論理ディスクの空き領域の割合と容量 (MB) を監視します。空きディスク領域の不足フラグは、空き領域の割合のしきい値と空き MB 数のしきい値の両方を下回った場合にのみ設定されます。

Knowledge Base article:

概要

論理ディスクの空きディスク領域の容量がしきい値を超えました。システムのパフォーマンスは大きな影響を受け、空き領域が増えるまで論理ディスク ボリュームにファイルを追加したり、既存のファイルを変更したりできなくなることがあります。

構成

論理ディスク空き領域の監視ルーチンは詳細な構成が可能なソリューションです。このルーチンでは、オペレータはシステムおよび非システム論理ディスク ボリュームに異なるしきい値を設定できます。また、警告およびエラー状態にも個別にしいき値を設定できます。

論理ディスク ボリュームの容量は数ギガバイトから数テラバイトまでさまざまなであるため、論理ディスク空き領域の監視ルーチンでは、警告およびエラーしきい値に達する前に超えるしきい値をメガバイト数およびパーセントの両方で指定する必要があります。このため、しきい値に達するには、システムまたは非システム ドライブのメガバイト数およびパーセントで定義された両方のしいき値に違反する必要があります。

論理ディスク空き領域の監視ルーチンの既定のしきい値は、次のとおりです。

システム ドライブ空き領域のしきい値 (既定)

パラメータ

既定値

システム ドライブ エラーのしきい値 (MB)

100

システム ドライブ エラーのしきい値 (%)

5

システム ドライブ警告のしきい値 (MB)

200

システム ドライブ警告のしきい値 (%)

10

非システム ドライブ空き領域のしきい値 (既定)

パラメータ

既定値

非システム ドライブ エラーのしきい値 (MB)

1000

非システム ドライブ エラーのしきい値 (%)

5

非システム ドライブ警告のしきい値 (MB)

2000

非システム ドライブ警告のしきい値 (%)

10

上記で定義されているしきい値は、上書き操作で変更できます。また、これらのしきい値は、管理グループ内のすべての論理ディスク ボリュームのインスタンスに適用できます。また必要に応じて、特定の論理ディスク ボリュームのインスタンス用に別個のしきい値を定義することもできます。

解決方法

空きディスク領域を増大するには、次の手順のいずれかまたは複数を実行します。

ディスク領域の最近の履歴を見るには、次の表示を使用できます。

ディスク容量表示の開始

Element properties:

TargetMicrosoft.Windows.Client.XP.LogicalDisk
Parent MonitorSystem.Health.AvailabilityState
CategoryPerformanceHealth
EnabledTrue
Alert GenerateTrue
Alert SeverityMatchMonitorHealth
Alert PriorityNormal
Alert Auto ResolveTrue
Monitor TypeMicrosoft.Windows.Client.XP.FreeSpace.Monitortype
RemotableTrue
AccessibilityPublic
Alert Message
論理ディスクの空き領域
コンピュータ {1} のディスク {0} の空き領域が不足しています。 しきい値を超えている値は、空き領域の割合 {2}\%、サイズ {3} MB です。
RunAsDefault

Source Code:

<UnitMonitor ID="Microsoft.Windows.Client.XP.LogicalDisk.FreeSpace" Accessibility="Public" Enabled="onEssentialMonitoring" Target="Microsoft.Windows.Client.XP.LogicalDisk" ParentMonitorID="SystemHealth!System.Health.AvailabilityState" Remotable="true" Priority="Normal" TypeID="Microsoft.Windows.Client.XP.FreeSpace.Monitortype" ConfirmDelivery="false">
<Category>PerformanceHealth</Category>
<AlertSettings AlertMessage="Microsoft.Windows.Client.XP.LogicalDisk.FreeSpace.AlertMessage">
<AlertOnState>Error</AlertOnState>
<AutoResolve>true</AutoResolve>
<AlertPriority>Normal</AlertPriority>
<AlertSeverity>MatchMonitorHealth</AlertSeverity>
<AlertParameters>
<AlertParameter1>$Target/Property[Type="Windows!Microsoft.Windows.LogicalDevice"]/DeviceID$</AlertParameter1>
<AlertParameter2>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/PrincipalName$</AlertParameter2>
<AlertParameter3>$Data/Context/Property[@Name='PctFree']$</AlertParameter3>
<AlertParameter4>$Data/Context/Property[@Name='MBFree']$</AlertParameter4>
</AlertParameters>
</AlertSettings>
<OperationalStates>
<OperationalState ID="UnderWarningThresholds" MonitorTypeStateID="UnderWarningThresholds" HealthState="Success"/>
<OperationalState ID="OverWarningUnderErrorThresholds" MonitorTypeStateID="OverWarningUnderErrorThresholds" HealthState="Warning"/>
<OperationalState ID="OverErrorThresholds" MonitorTypeStateID="OverErrorThresholds" HealthState="Error"/>
</OperationalStates>
<Configuration>
<IntervalSeconds>3600</IntervalSeconds>
<TimeoutSeconds>360</TimeoutSeconds>
<TargetComputerName>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</TargetComputerName>
<SystemDriveErrorPercentThreshold>5</SystemDriveErrorPercentThreshold>
<SystemDriveWarningPercentThreshold>10</SystemDriveWarningPercentThreshold>
<NonSystemDriveErrorPercentThreshold>5</NonSystemDriveErrorPercentThreshold>
<NonSystemDriveWarningPercentThreshold>10</NonSystemDriveWarningPercentThreshold>
<SystemDriveErrorMBytesThreshold>100</SystemDriveErrorMBytesThreshold>
<SystemDriveWarningMBytesThreshold>200</SystemDriveWarningMBytesThreshold>
<NonSystemDriveErrorMBytesThreshold>1000</NonSystemDriveErrorMBytesThreshold>
<NonSystemDriveWarningMBytesThreshold>2000</NonSystemDriveWarningMBytesThreshold>
<DiskLabel>$Target/Property[Type="Windows!Microsoft.Windows.LogicalDevice"]/DeviceID$</DiskLabel>
</Configuration>
</UnitMonitor>