Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Number of CICS Sessions

Status
Not open for further replies.

gbell

MIS
Feb 19, 2002
86
AU
Hi,

We run several CICS regions on HP-UX supporting the Ellipse application with a Citrix front end. We are licensed for a finite number of Ellipse sessions and I was looking for a solution to monitor how many CICS sessions are connected which will tell me how many Ellipse sessions are active.

I was thinking I may be able to do it with ps -ef and grep out the active sessions but I don't know which CICS processes relate to a terminal session. Can anyone help please?

Greg
 
If you know which port is configured for CICS, you should be able to get a basic count by looking at active connections using netstat.

# netstat -an|grep {port}|wc -l

This might also show connections which are still established, even though the associated process is no longer running. Therefore it may not be what you need.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top