Microsoft Operations Manager

LoggingDomain Property

The LoggingDomainproperty gets the logging domain of the event.

[VBScript] Event.LoggingDomain

Access

Read/Write

Return Value

String

Remarks

The LoggingDomainproperty is read-only when used with an event provided to the script by MOM. The property is read/write when used with a new event created with the ScriptContext.CreateEventmethod.

Examples

The following example shows how to create a new event and set the LoggingDomainproperty to DOMAIN1.

[VBScript] 
Const EVENT_TYPE_SUCCESS = 0
Const EVENT_TYPE_ERROR   = 1
Const EVENT_TYPE_WARNING = 2
Const EVENT_TYPE_INFORMATION = 4
Const EVENT_TYPE_AUDITSUCCESS = 8
Const EVENT_TYPE_AUDITFAILURE = 16

Function MakeEvent()
	Dim objEvent
 
	Set objEvent = ScriptContext.CreateEvent()

	objEvent.EventSource = "TestScript"
	objEvent.EventNumber = 1349
	objEvent.EventType = EVENT_TYPE_WARNING
	objEvent.LoggingDomain = "DOMAIN1"
	objEvent.SourceDomain = "DOMAIN1"

	Set MakeEvent = objEvent
End Function

Requirements

Windows NT/2000: Requires Windows 2000 or later
Version: Requires MOM 1.0 SP1

See Also

Event Object


Did you find this information useful? Please send your suggestions and comments about the documentation to momsdk@microsoft.com.