UDH and load testing (Network Product)
At 13 OCT 2020 07:59:13PM James Birnie wrote:
Hi guys
We currently have 350 user sessions allocated to service our website. We are running UDH 4.72 and using 10 x app-servers running the OEngneServer service to handle these requests.
We are looking to do some load testing via Akamai's Cloudtest product, hopefully later this month, and I am wondering if there is a way to query UDH as to how many licenses are being used in real-time?
Regards,
James
At 14 OCT 2020 09:38AM bob carten wrote:
Hi James
The rti_lh_info program can return that information, see the code example below.
Caveats:
The UD has a set of "statistics" functions which return information from internal arrays. Rti_lh_info calls those functions to gather the information. The statistics calls are not designed or intended to be called continuously. You may see some performance degradation or even system instability.
declare function rti_lh_info rslt = rti_lh_info(1) /* rslt<1> = lhsrvc_version rslt<2> = SessionsFound rslt<3> = ActiveInfo rslt<4> = lh_servername rslt<5> = lh_serialno rslt<6> = lhsrvc_mode ;* ud5 rslt<7> = resize_disabled ;* ud5 */
At 14 OCT 2020 03:08PM James Birnie wrote:
Perfect - thanks Bob!