WLST get current sessions and connections weblogic

2.1k views Asked by At

i need a wlst script to get current sessions of a specific deployment and current connections of a managed server. weblogic version 10.3.6.0

Is there any wlst command to search an attribute name.

1

There are 1 answers

0
Thiru On BEST ANSWER

connect('user','pass','t3://ip:port')

serverRuntime()

get('/ApplicationRuntimes/application name/ComponentRuntimes/managed servername/application name/OpenSessionsCurrentCount')

get('/ServerChannelRuntimes/Default[http]/ConnectionsCount')

disconnect()