BookmarkSubscribeRSS Feed
RahulN
Calcite | Level 5

Hello,

I need to know how to check number of active SAS EG connections established at a particular time.

Version used is 5.1

/Rahul Nimje

4 REPLIES 4
CaseySmith
SAS Employee

Hi,


I think your best bet is to parse the object spawner logs, which will show you the connections to SAS workspace servers from EG (APPNAME=SAS Enterprise Guide), the user, and the process ID of the sas.exe process.  For example:

2015-06-26T13:49:22,799 INFO  [00006715] :cassmi@CARYNT - New client connection (204) accepted from server port 8591 for user cassmi@CARYNT. Encryption level is Credentials using encryption algorithm SASProprietary. Peer IP address and port are [::ffff:10.40.13.23]:11997 for APPNAME=SAS Enterprise Guide.

2015-06-26T13:49:23,142 INFO  [00006715] :cassmi@CARYNT - Created process 19952 using credentials cassmi@CARYNT (child id 93).

2015-06-26T13:49:23,158 INFO  [00006961] :SYSTEM@UITSRV04 - New out call client connection (205) for launched server (child 93).  Peer IP address and port are [::ffff:10.121.18.73]:57832.

2015-06-26T13:49:23,158 INFO  [00006966] :SYSTEM@UITSRV04 - Launched process 19952 (child id 93) is now running as process 17908.

2015-06-26T13:49:23,158 INFO  [00006961] :SYSTEM@UITSRV04 - Client connection 204 for user cassmi@CARYNT closed.

2015-06-26T14:01:34,302 INFO  [00006975] :SYSTEM@UITSRV04 - Client connection 205 for user cassmi@CARYNT closed.

2015-06-26T14:01:34,333 INFO  [00006722] :SYSTEM@UITSRV04 - Process 17908 (originally 19952) for user cassmi@CARYNT (child id 93) has ended.


Casey


Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF

View now: on-demand content for SAS users

RahulN
Calcite | Level 5

Hello Casey,

Thanks for your answer. I tried but there are some difficulties for finding the users logged in SAS EG.

I tried for multiple logs but can find only one message for SAS EG,so I am still unable to find the users.

I have following settings in the config file : logconfig.xml

   <!-- Application message logger -->

   <logger name="App">

      <level value="Info"/>

   </logger>

Should I change anything to trace the users ?

I found following on the internet :

To increase the logging level for multiple spawner sessions :

  1. Open the spawner's logconfig.xml file, and locate the following lines:

    <logger name="App">  <level value="Info"> </logger>

  2. Change <level value="Info"> to <level value="Trace">

  3. Restart the spawner.

Any recommendation from you?

jakarman
Barite | Level 11

Analyzing the logs will show what has happened in the past.

Doing analyses on running processes using the os commands like PS will show you what is happening now.

---->-- ja karman --<-----
Kurt_Bremser
Super User

For the past, analyze the spawner log(s). For current state, ps -ef (on UNIX systems) will give you a list of all running processes; since workspace server sessions have a very distinct commandline, a proper grep will sort out the WS processes.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1169 views
  • 0 likes
  • 4 in conversation