Thiru
Thiru

Reputation: 401

WLST get current sessions and connections weblogic

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.

Upvotes: 0

Views: 2360

Answers (1)

Thiru
Thiru

Reputation: 401

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

serverRuntime()

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

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

disconnect()

Upvotes: 1

Related Questions