Determine what appserver I user is connected to

E10.2.600.13

We have two appservers that are load balanced.

Is there a way to determine what appserver a user is connected to? When I look at the admin console, I can see all user sessions regardless of which appserver I am running the console from.
I’d like to be able to see what appserver a session is connected to.

in the client, you can turn on the global option for ‘server’ and display the server name in the status bar the bottom of a given window…
image

@josecgomez created a BAQ that simply returned the server instance and then added that BAQ as a Widget.

Perhaps it returned User Session or something, maybe he can elaborate.

Is just a UBAQ with a PostProcessing on GeList() and a Calculated field

foreach(var x in ttResults)
  {
    x.Calculated_Server = Environment.MachineName;
  }
3 Likes