Description Syntax Examples listDMSEventRoutes

DMS Custom WLST Commands 6-17

6.2.7.1 Description

For a specific filter, displays the full configuration. If you do not specify a filter ID, the command displays the filter ID and name for all the filters in the Event Tracing configuration.

6.2.7.2 Syntax

listDMSEventFilter[id=id] [, server=server_name]

6.2.7.3 Example

The following example displays the list of all the filters in the Event Tracing configuration: listDMSEventFilter ID NAME mds1 MyFilter mds2 MDS2Filter The following example displays the configuration of the filter mds1: listDMSEventFilterid=mds1 ID : mds1 NAME: MyFilter PROPERTIES CONDITION: NOUNTYPE equals MDS_Connections AND CONTEXT user equals bruce IGNORECASE=false

6.2.8 listDMSEventRoutes

Command Category: DMS Event Tracing Use with WLST: Online

6.2.8.1 Description

List the events routes and their status enabled or disabled that are associated with the specified filter or destination. If you do not specify a filterid or destinationid, this command lists all the event routes in the Event Tracing configuration.

6.2.8.2 Syntax

listDMSEventRoutes[filterid=filter_id] [, destinationid=destination_id] [, server=server_name] Argument Definition id Optional. The unique identifier for specified filter. server Optional. The server on which to perform this operation. The default is the server to which you are connected. Argument Definition filterid Optional. The unique identifier for the filter. destinationi d Optional. The unique identifier for the specific destination. The destination must exist. 6-18 Oracle Fusion Middleware WebLogic Scripting Tool Command Reference

6.2.8.3 Examples

The following example lists all event routes: listDMSEventRoutes FILTER : mdsbruce DESTINATION: jfr ENABLED : false FILTER : null DESTINATION: destination1 ENABLED : true The following example lists the event routes with the filter id of filter1: listDMSEventRoutesfilterid=filter1 FILTER : filter1 DESTINATION: jfr ENABLED : true FILTER : filter1 DESTINATION: destination1 ENABLED : true The following example lists the event routes with the destination id of destination1: listDMSEventRoutesdestinationid=destination1 FILTER : filter1 DESTINATION: destination1 ENABLED : true

6.2.9 removeDMSEventDestination