I need to build string with the following pattern:
<Server>;<Node>;<Cell>;<Version>;<MessageListenerThreadPool-ID>;<ORBThreadPool-
ID>;<WebcontainerThreadPool-ID>;<TCPChannelsThreadPool-ID>
So I need to write the ID's of several standard thread pools, but I can't find any information about thread-pools Id's. I found only thread-pool names. May be somebody knows where I can find information about thread-pool Id's?
Thanks!
P.S. I'm using Websphere 7.x
I found answer to my question.
Thread-pool ID can be obtained from JConsole, under Threadpool node. There many thread-pools, and thread-pools Mbeans listed in question have an objectName attribute, like this:
WebSphere:name=ORB.thread.pool,process=server1,platform=dynamicproxy,.......server.xml#ThreadPool_1183122130078,cell=someCell,spec=1.0
In this case Thread-pool ID is 1183122130078.
Thanks all.