Get hung client connections for a specific ABL application

When to use:

Session Manager metrics provides information about the number of requests that are still running in a given ABL Application to identify clients connections that are hung. In this query you can specify the number of miliseconds you want to elapse before sending information back about hung client connections.

Query:
# Tokens: APP_NAME
# Get session manager metrics about hung client connections from an ABL application
{"O":"PASOE:type=OEManager,name=SessionManager","M":["getHungClientConnections","oepas1",6000]}
Note: In this example, the token APP_NAME is replaced with oepas1, and 6000 is the minimum elapsed time in miliseconds to be reported.
Result:

The elapsedTimeMs can be used to help identify long running requests which could indicated a hung client connection.

{
  "getHungClientConnections": [
    {
      "httpSessionId": "",
      "reqStartTimeStr": "2018-06-25T15:32:48.139-0400",
      "clientName": "172.16.21.106",
      "executerThreadId": "thd-5",
      "requestID": "3fj1RO35XYk/FDkZSN5UUw",
      "requestProcedure": "retrieveAccnts.p",
      "requestUrl": "http://localhost:8810/apsv",
      "sessionID": "C4F5EA614E9B1F8D94E28D7A87185DA923C4EE22F204.oepas1",
      "adapterType": "APSV",
      "elapsedTimeMs": 35298
    },
    {
      "httpSessionId": "",
      "reqStartTimeStr": "2018-06-25T15:32:47.667-0400",
      "clientName": "localhost",
      "executerThreadId": "thd-1",
      "requestID": "rw4IDagih4Q/FDkZAMm8TQ",
      "requestProcedure": "mycustomer.p",
      "requestUrl": "http://localhost:8810/apsv",
      "sessionID": "9E0DDCB1CF61036B5D52587FA41CDEAAE9C8D8713B59.oepas1",
      "adapterType": "APSV",
      "elapsedTimeMs": 35771
    },
    {
      "httpSessionId": "",
      "reqStartTimeStr": "2018-06-25T15:33:11.131-0400",
      "clientName": "localhost",
      "executerThreadId": "thd-1",
      "requestID": "gBR4KKyWS6E/FDoZuBeYZQ",
      "requestProcedure": "getlist.p",
      "requestUrl": "http://localhost:8810/apsv",
      "sessionID": "13512413B5FE9737F0180B7439EF7921EA0CDBA52753.oepas1",
      "adapterType": "APSV",
      "elapsedTimeMs": 12307
    }
  ]
}