Win32_PerfFormattedData_
WindowsWorkflowFoundation4000_WFSystemWorkflow4000 クラス - WMI Library
Win32_PerfFormattedData_
WindowsWorkflowFoundation4000_WFSystemWorkflow4000 クラスの説明
Windows Workflow Foundation パフォーマンス カウンター
WMI Provider は、WmiPerfInst です。
プロパティ リスト
Caption
Data Type: string
Access Type: Read Only
統計またはメトリックの簡単な説明 (1 行分の文字列) です。
Description
Data Type: string
Access Type: Read Only
統計またはメトリックの説明です。
Frequency_Object
Data Type: uint64
Access Type: Read Only
N/A
Frequency_PerfTime
Data Type: uint64
Access Type: Read Only
N/A
Frequency_Sys100NS
Data Type: uint64
Access Type: Read Only
N/A
Name
Data Type: string
Access Type: Read Only
Name プロパティにより、統計またはメトリックを認識するラベルが定義されます。サブクラスの場合、プロパティは上書きされて Key プロパティとなります。
Timestamp_Object
Data Type: uint64
Access Type: Read Only
N/A
Timestamp_PerfTime
Data Type: uint64
Access Type: Read Only
N/A
Timestamp_Sys100NS
Data Type: uint64
Access Type: Read Only
N/A
WorkflowsAborted
Data Type: uint32
Access Type: Read Only
中止したワークフローの合計数。
WorkflowsAbortedPersec
Data Type: uint32
Access Type: Read Only
中止したワークフローの比率 (秒単位)。
WorkflowsCompleted
Data Type: uint32
Access Type: Read Only
完了したワークフローの合計数。
WorkflowsCompletedPersec
Data Type: uint32
Access Type: Read Only
完了したワークフローの比率 (秒単位)。
WorkflowsCreated
Data Type: uint32
Access Type: Read Only
作成したワークフローの合計数。
WorkflowsCreatedPersec
Data Type: uint32
Access Type: Read Only
作成したワークフローの比率 (秒単位)。
WorkflowsExecuting
Data Type: uint32
Access Type: Read Only
実行中のワークフロー インスタンスの合計数。
WorkflowsIdlePersec
Data Type: uint32
Access Type: Read Only
アイドル状態になるワークフローの比率 (秒単位)。
WorkflowsInMemory
Data Type: uint32
Access Type: Read Only
メモリ内のワークフローの合計数。
WorkflowsLoaded
Data Type: uint32
Access Type: Read Only
読み込んだワークフローの合計数。
WorkflowsLoadedPersec
Data Type: uint32
Access Type: Read Only
読み込んだワークフローの比率 (秒単位)。
WorkflowsPending
Data Type: uint32
Access Type: Read Only
スレッドを待機しているワークフローの合計数。
WorkflowsPersisted
Data Type: uint32
Access Type: Read Only
持続ワークフローの合計数。
WorkflowsPersistedPersec
Data Type: uint32
Access Type: Read Only
持続ワークフローの比率 (秒単位)。
WorkflowsRunnable
Data Type: uint32
Access Type: Read Only
実行可能なワークフローの合計数。
WorkflowsSuspended
Data Type: uint32
Access Type: Read Only
一時停止したワークフローの合計数。
WorkflowsSuspendedPersec
Data Type: uint32
Access Type: Read Only
一時停止したワークフローの比率 (秒単位)。
WorkflowsTerminated
Data Type: uint32
Access Type: Read Only
終了したワークフローの合計数。
WorkflowsTerminatedPersec
Data Type: uint32
Access Type: Read Only
終了したワークフローの比率 (秒単位)。
WorkflowsUnloaded
Data Type: uint32
Access Type: Read Only
アンロードしたワークフローの合計数。
WorkflowsUnloadedPersec
Data Type: uint32
Access Type: Read Only
アンロードしたワークフローの比率 (秒単位)。
メソッド リスト
Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000 クラスにはメソッドはありません。
WQL サンプル (e.g. VB/C#/PowerShell)
SELECT * FROM Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000
VB6/VBS
SWbemServices クラスの ExecQuery メソッドから WQL を実行可能です。
Set oClassSet = Service.ExecQuery("SELECT * FROM Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000")
または下記のような記述でも実行可能です。
Set oClassSet = GetObject("winmgmts:\\.\root\cimv2").ExecQuery("SELECT * FROM Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000")
VB.Net
ObjectQuery クラスの QueryString プロパティに WQL を設定し、ManagementObjectSearcher クラスの Get メソッドから WQL を実行可能です。
oSearcher.Query.QueryString = "SELECT * FROM Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000"
oClass = oSearcher.Get
C#.Net
ObjectQuery クラスの QueryString プロパティに WQL を設定し、ManagementObjectSearcher クラスの Get メソッドから WQL を実行可能です。
oSearcher.Query.QueryString = "SELECT * FROM Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000"
oClass = oSearcher.Get();
PowerShell
Get-WmiObject コマンドレットの query オプションを指定し WQL を実行可能です。
Get-WmiObject -query "SELECT * FROM Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000"
またはクラス名を直接指定する実行方法もあります。
Get-WmiObject Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000
このサイトの情報について
このコンテンツは WMI の各コンポーネントが持っている Win32_PerfFormattedData_WindowsWorkflowFoundation4000_WFSystemWorkflow4000 クラス情報を参照・抽出しリファレンスとして作成・提供しています。
参照した WMI の名前空間は root/CIMV2、書き出し環境は Windows 10 になります。
WMI の使い方 (VB6, VBS, VBA, VB.NET, VC#, PowerShell を対象) に関しては WMI Step も参考にしてみてください。(WMI 初心者・入門編としてもおすすめです。)
各種言語を使用した WMI を使用するたたき台としてソーステンプレートも公開しています。プログラム/スクリプト作成時に役立てば…と思っています。
今後各 WMI Class をサポートしている OS の種類を掲載する予定です。
予定OS: Windows XP/Windows Vista/Windows 7/Windows 8/Windows 10/Windows Server 2003/Windows Server 2003 R2/Windows Server 2008/Windows Server 2008 R2