Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
925 B

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. ulperf.mof
  5. Abstract:
  6. This is the wmi mof file for the ul.sys performance counter support object
  7. Author:
  8. Paul McDaniel (paulmcd) 10-May-1999
  9. Revision History:
  10. --*/
  11. #pragma autorecover
  12. #pragma namespace ("\\\\.\\root\\default")
  13. instance of __Win32Provider as $P
  14. {
  15. Name="Microsoft.UlPerfCounters.1";
  16. CLSID="{e8833ce8-0722-11d3-a441-0080c7e11d99}";
  17. };
  18. instance of __InstanceProviderRegistration
  19. {
  20. Provider=$P;
  21. SupportsGet = TRUE;
  22. SupportsEnumeration = TRUE;
  23. };
  24. [dynamic, provider("Microsoft.UlPerfCounters.1")]
  25. class UlConfigGroupPerfCounters : Win32_PerfRawData
  26. {
  27. [key]
  28. uint64 ConfigGroupId;
  29. string AppPoolName;
  30. uint32 BytesReceived;
  31. uint32 BytesSent;
  32. uint32 CurrentConnections;
  33. uint32 CurrentRequests;
  34. uint32 QueuedRequests;
  35. uint32 AttachedProcesses;
  36. };