2

我正在尝试使用 wsadmin 编写一个脚本,该脚本将检索活动会话的总量。我环顾了整个网络,并没有发现任何真正有用的东西。有没有办法使用 wsadmin 工具来做到这一点?谢谢。

4

1 回答 1

2

请参阅内存会话计数中的 Websphere - http://websphereadmin-janglestrategies.blogspot.com/2010/02/websphere-in-memory-session-count.html

从那篇博文

servers = AdminTask.listServers( '[-serverType APPLICATION_SERVER]').splitlines()

对于服务器中的服务器:

# Now just get the app server name - not the whole jython config id
newserver = server.split('(')

# get the session manager mbean
ps = AdminControl.queryNames ('WebSphere:type=SessionManager,process=' + newserver[0] + ',*')

# now get the stats for the mbean
AdminControl.getAttribute(ps, 'stats')

希望你会得到一些像这样的输出:

['', 'Stats name=My_WAR_FILE_NAME, type=servletSessionsModule', '{', 'name=SessionObjectSize, ID=18, description=会话级别的会话对象的平均大小,仅包括缓存中的可序列化属性。, unit=BYTE, type=AverageStatistic, avg=1762.5, min=1713, max=1812, total=200925, count=114, sumSq=4.0370855625E10, type=TimeStatistic, avg=1762.5, min=1713, max=1812, total =200925,计数=114,sumSq=4.0370855625E10','}']

于 2012-06-13T14:48:36.750 回答