VMwareソリューションで使用される問合せ
次のクエリーは、vCenterからメトリックまたはアラーム関連情報を抽出するために、VMwareモニタリングソリューションダッシュボードウィジェットで使用されます。
| ウィジェット | 説明 | ログ・エクスプローラでの名前の検索 | クエリー |
|---|---|---|---|
| データ・センター・クラスタ | 選択したvCenterスコープで検出されたvSphereクラスタの合計数。 | VMWareデータ・センター・クラスタ数 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Data Center' | stats latest('Cluster Count') as 'Data Center Clusters' |
| ESXiホスト | 現在モニターされているESXiホストの数。 | VMWareホスト数 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Data Center' | stats latest('Host Count') as ESXiHosts |
| 仮想マシン | Log AnalyticsがこのvCenterで検出した仮想マシンの合計数。 | VMWare VM数 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Data Center' | stats latest('Virtual Machine Count') as VMs |
| データ・ストア | 環境内で検出されたデータ・ストアの数。 | VMWareデータ・ストア数 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Data Center' | stats latest('Data Store Count') as 'Data Stores' |
| ネットワーク | vCenterで検出されたネットワークの数(ポートグループなど)。 | VMWareネットワーク数 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Data Center' | stats latest('Network Count') as Networks |
| 平均クラスタCPU使用率 | 選択した時間範囲のクラスタ全体の平均CPU使用率。 | 平均VMWareクラスタCPU使用率 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Cluster' | stats avg('CPU Usage (%)') as 'Average CPU Usage', trend(avg('CPU Usage (%)'), 1hour) | compare timeshift = auto |
| 平均VM CPU使用率 | 選択した時間範囲の仮想マシン全体の平均CPU使用率。 | 平均VMWare VM CPU使用率 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere VM' | stats avg('CPU Usage (%)') as 'Average CPU Usage', trend(avg('CPU Usage (%)'), 1hour) | compare timeshift = auto |
| 平均クラスタ・メモリー使用量 | 選択した時間範囲におけるクラスタ全体の平均メモリー使用量。 | 平均VMWareクラスタ・メモリー使用量 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Cluster' | stats avg('Memory Used (%)') as 'Average Memory Usage', trend(avg('Memory Used (%)'), 1hour) | compare timeshift = auto |
| 平均ストレージ使用量 | 選択した時間範囲における環境全体の平均データ・ストア/ストレージ使用量。 | 平均VMWareストレージ使用量 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere Data Store' | stats avg('Storage Used (%)') as 'Average Storage Usage', trend(avg('Storage Used (%)'), 1hour) | compare timeshift = auto |
| 平均ホストCPU使用率 | ESXiホスト全体の平均CPU使用率。 | 平均VMWareホストCPU使用率 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere ESXi Host' | stats avg('CPU Usage (%)') as 'Average Host CPU Usage', trend(avg('CPU Usage (%)'), 1hour) | compare timeshift = auto |
| 平均ホスト・メモリー使用量 | ESXiホスト全体の平均メモリー使用量。 | 平均VMWareホスト・メモリー使用量 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere ESXi Host' | stats avg('Memory Used (%)') as 'Average Memory Usage', trend(avg('Memory Used (%)'), 1hour) | compare timeshift = auto |
| 平均VMメモリー使用量 | 選択した時間範囲における仮想マシン全体の平均メモリー使用量。 | 平均VMWare VMメモリー使用量 | 'Log Source' = 'VMWare vSphere Metrics' and 'Entity Type' = 'VMware vSphere VM' | stats avg('Memory Used (%)') as 'Average Memory Usage', trend(avg('Memory Used (%)'), 1hour) | compare timeshift = auto |
| アラーム | 時間、エンティティ、エンティティ・タイプ、ステータス、アラーム名、メッセージなどの詳細を含むvSphereアラームをトリガーしました。 | VMWareアラーム | 'Log Source' = 'VMWare vSphere Alarms' | fields -'Log Source', -Label, -'Problem Priority', -'Host Name (Server)', Entity, 'Entity Type', Status, 'Alarm Name', Message |
| VMWareトポロジ | 検出されたVMwareトポロジにより、vCenter、データ・センター、クラスタ、ホスト、VM、ネットワークおよびデータ・ストア間の関係を理解できます。 | - | - |