Win32_PerfRawData_MSDTCBridge4000 python sample code
The foundations for Manageability in Windows is Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).
ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself. The Win32_PerfRawData_MSDTCBridge4000 WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Sample Code
from win32com.client import GetObject objWMI = GetObject('winmgmts:').InstancesOf('Win32_PerfRawData_MSDTCBridge4000_MSDTCBridge4000') for obj in objWMI: if obj.Averageparticipantcommitresponsetime != None: print("Averageparticipantcommitresponsetime:" + str(obj.Averageparticipantcommitresponsetime)) if obj.Averageparticipantcommitresponsetime_Base != None: print("Averageparticipantcommitresponsetime_Base:" + str(obj.Averageparticipantcommitresponsetime_Base)) if obj.Averageparticipantprepareresponsetime != None: print("Averageparticipantprepareresponsetime:" + str(obj.Averageparticipantprepareresponsetime)) if obj.Averageparticipantprepareresponsetime_Base != None: print("Averageparticipantprepareresponsetime_Base:" + str(obj.Averageparticipantprepareresponsetime_Base)) if obj.Caption != None: print("Caption:" + str(obj.Caption)) if obj.CommitretrycountPersec != None: print("CommitretrycountPersec:" + str(obj.CommitretrycountPersec)) if obj.Description != None: print("Description:" + str(obj.Description)) if obj.FaultsreceivedcountPersec != None: print("FaultsreceivedcountPersec:" + str(obj.FaultsreceivedcountPersec)) if obj.FaultssentcountPersec != None: print("FaultssentcountPersec:" + str(obj.FaultssentcountPersec)) if obj.Frequency_Object != None: print("Frequency_Object:" + str(obj.Frequency_Object)) if obj.Frequency_PerfTime != None: print("Frequency_PerfTime:" + str(obj.Frequency_PerfTime)) if obj.Frequency_Sys100NS != None: print("Frequency_Sys100NS:" + str(obj.Frequency_Sys100NS)) if obj.MessagesendfailuresPersec != None: print("MessagesendfailuresPersec:" + str(obj.MessagesendfailuresPersec)) if obj.Name != None: print("Name:" + str(obj.Name)) if obj.PreparedretrycountPersec != None: print("PreparedretrycountPersec:" + str(obj.PreparedretrycountPersec)) if obj.PrepareretrycountPersec != None: print("PrepareretrycountPersec:" + str(obj.PrepareretrycountPersec)) if obj.ReplayretrycountPersec != None: print("ReplayretrycountPersec:" + str(obj.ReplayretrycountPersec)) if obj.Timestamp_Object != None: print("Timestamp_Object:" + str(obj.Timestamp_Object)) if obj.Timestamp_PerfTime != None: print("Timestamp_PerfTime:" + str(obj.Timestamp_PerfTime)) if obj.Timestamp_Sys100NS != None: print("Timestamp_Sys100NS:" + str(obj.Timestamp_Sys100NS)) print("") print("########") print("")