NamoRamana 3 Posted February 3, 2023 Is there anyway in Delphi to get COM+ statistics (Highlighted part in the Image below) ? I looked into COMAdminCatalogObejct, I don't think it has methods/properties to return the statistics. The closest API I found is: https://www.codeproject.com/Articles/12264/Comonitor-A-COM-Monitor Share this post Link to post
stijnsanders 35 Posted February 3, 2023 I wonder if you could get to this data using WBEM/WMI... https://stackoverflow.com/questions/2761328/how-do-i-use-wmi-with-delphi-without-drastically-increasing-the-applications-fi Share this post Link to post
NamoRamana 3 Posted February 6, 2023 Thanks for the pointer on WMI classes. There are few COM and DCOM related classes like Win32_ClassicCOMClass, Win32_COMClass, Win32_DCOMApplication. etc, but couldn't find anything that gives COM statistics. Appreciate your help. Share this post Link to post
Anders Melander 1783 Posted February 7, 2023 Everything you need is available through the COM+ Tracking API. If you just need the statistics you will probably need to use the IGetAppTrackerData interface. Share this post Link to post