仮想マシンのパフォーマンス履歴Performance history for virtual machines
適用対象:Windows Server 2019Applies to: Windows Server 2019
記憶域スペースダイレクトのパフォーマンス履歴のこのサブトピックでは、仮想マシン (VM) について収集されたパフォーマンス履歴の詳細について説明します。This sub-topic of Performance history for Storage Spaces Direct describes in detail the performance history collected for virtual machines (VM). パフォーマンス履歴は、実行中のクラスター化された VM ごとに使用できます。Performance history is available for every running, clustered VM.
注意
新しく作成または名前が変更された Vm の収集が開始されるまでに数分かかる場合があります。It may take several minutes for collection to begin for newly created or renamed VMs.
系列の名前と単位Series names and units
これらのシリーズは、対象となるすべての VM について収集されます。These series are collected for every eligible VM:
系列Series | ユニットUnit |
---|---|
vm.cpu.usage |
パーセントpercent |
vm.memory.assigned |
バイトbytes |
vm.memory.available |
バイトbytes |
vm.memory.maximum |
バイトbytes |
vm.memory.minimum |
バイトbytes |
vm.memory.pressure |
- |
vm.memory.startup |
バイトbytes |
vm.memory.total |
バイトbytes |
vmnetworkadapter.bandwidth.inbound |
1秒あたりのビット数bits per second |
vmnetworkadapter.bandwidth.outbound |
1秒あたりのビット数bits per second |
vmnetworkadapter.bandwidth.total |
1秒あたりのビット数bits per second |
また、などのすべての仮想ハードディスク (VHD) シリーズ vhd.iops.total
は、VM に接続されているすべての vhd について集計されます。In addition, all virtual hard disk (VHD) series, such as vhd.iops.total
, are aggregated for every VHD attached to the VM.
解釈する方法How to interpret
系列Series | 説明Description |
---|---|
vm.cpu.usage |
バーチャルマシンがホストサーバーのプロセッサを使用している割合。Percentage the virtual machine is using of its host server's processor(s). |
vm.memory.assigned |
仮想マシンに割り当てられているメモリの量。The quantity of memory assigned to the virtual machine. |
vm.memory.available |
割り当てられた容量について、使用可能なメモリの量。The quantity of memory that remains available, of the amount assigned. |
vm.memory.maximum |
動的メモリを使用する場合は、仮想マシンに割り当てることができる最大メモリ量です。If using dynamic memory, this is the maximum quantity of memory that may be assigned to the virtual machine. |
vm.memory.minimum |
動的メモリを使用する場合は、仮想マシンに割り当てることができるメモリの最小量です。If using dynamic memory, this is the minimum quantity of memory that may be assigned to the virtual machine. |
vm.memory.pressure |
仮想マシンに割り当てられたメモリに対する仮想マシンのメモリの割合。The ratio of memory demanded by the virtual machine over memory allocated to the virtual machine. |
vm.memory.startup |
仮想マシンを起動するために必要なメモリの量。The quantity of memory required for the virtual machine to start. |
vm.memory.total |
メモリの合計。Total memory. |
vmnetworkadapter.bandwidth.inbound |
仮想マシンがすべての仮想ネットワークアダプターで受信したデータの比率。Rate of data received by the virtual machine across all its virtual network adapters. |
vmnetworkadapter.bandwidth.outbound |
仮想マシンが仮想ネットワークアダプターを介して送信したデータの比率。Rate of data sent by the virtual machine across all its virtual network adapters. |
vmnetworkadapter.bandwidth.total |
仮想マシンが仮想ネットワークアダプター全体で受信または送信したデータの合計速度。Total rate of data received or sent by the virtual machine across all its virtual network adapters. |
注意
カウンターは、サンプリングされるのではなく、間隔全体にわたって測定されます。Counters are measured over the entire interval, not sampled. たとえば、VM が9秒間アイドル状態であるにもかかわらず、ホスト CPU の50% が10秒間に使用されるスパイクである場合、 vm.cpu.usage
この10秒間隔で平均で5% として記録されます。For example, if the VM is idle for 9 seconds but spikes to use 50% of host CPU in the 10th second, its vm.cpu.usage
will be recorded as 5% on average during this 10-second interval. これにより、パフォーマンス履歴がすべてのアクティビティをキャプチャし、ノイズに対して堅牢になります。This ensures its performance history captures all activity and is robust to noise.
PowerShell での使用法Usage in PowerShell
GET VMコマンドレットを使用します。Use the Get-VM cmdlet:
Get-VM <Name> | Get-ClusterPerf
注意
Get VM コマンドレットは、クラスター全体ではなく、ローカルサーバーまたは指定されたサーバー上のバーチャルマシンのみを返します。The Get-VM cmdlet only returns virtual machines on the local (or specified) server, not across the cluster.