IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Commands (wsadmin scripting)
showEventServiceStatus command
Use the showEventServiceStatus command to display the event service status on your server.
Purpose
The showEventServiceStatus command is a Common Event Infrastructure administrative command is available for the AdminTask object. Use this command to return the status of the event service in a server or cluster. If the task is executed with no parameters, the status of all event services is displayed. To filter the list of event services to be displayed, provide nodeName, serverName, or clusterName. For more information about the AdminTask object, see the WebSphere Application Server documentation.
The product uses a Jython version that does not support Microsoft Windows 2003, Windows Vista, or Windows 7 operating systems.
Parameters
- - nodeName
- Use this parameter to display only the status of the event services that belong to the specified node. You must not specify this parameter if the clusterName parameter is specified.
- - serverName
- Use this parameter to display only the status of the event services that belong to the specified server. You can use this parameter with the nodeName parameter to display the status of the event service belonging to the specified node and server. You must not specify this parameter if the clusterName parameter is specified.
- - clusterName
- Use this parameter to only display the status of the event services that belong to the specified cluster. You must not specify this parameter if the nodeName or serverName parameters are specified.
Sample
Batch mode example usage:
Use Jacl:
$AdminTask showEventServiceStatus {-nodeName nodename -serverName servername} $AdminTask showEventServiceStatus {-clusterName clustername}Use Jython string:
AdminTask.showEventServiceStatus('[-nodeName nodename -serverName servername]') AdminTask.showEventServiceStatus('[-clusterName clustername]')Use Jython list:
AdminTask.showEventServiceStatus(['-nodeName', 'nodename', '-serverName', '-servername']) AdminTask.showEventServiceStatus(['-clusterName', 'clustername'])
Interactive mode example usage:
Use Jacl:
$AdminTask showEventServiceStatus {-interactive}Use Jython string:
AdminTask.showEventServiceStatus('[-interactive]')Use Jython list:
AdminTask.showEventServiceStatus(['-interactive'])
Parent topic: Commands (wsadmin scripting)
Related information:
![]()
Obtaining online help using wsadmin scripting
![]()
Administrative command invocation syntax using wsadmin scripting
![]()
Use the wsadmin scripting tool
![]()
Jython script library