We don’t have a specific way of counting threads, but I supposed you could loop through each site and count the number of lines in the NetConfig that began with “protocol”. Something like
Code:
grep -c ^protocol NetConfig
in an AIX environment. Or there might be something in the nfLoad modules that could be used to count the threads.
It appears that the count from hcilicstatus is the running threads, meaning actually turned on. I have 2 sites where I have 250 threads in one and 2 in the other. Three are turned off in the larger site, so total created threads is 252 less the 3 turned off leaves me with 249 running threads.
Other commands that may help.
In tcl
set thread_count [netconfig get connection count]
This is site dependent. You would need to roll through your sites to get the total count.