Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added NetScaler Nitro API Classes

...

  1. configureLBHealthCheck Creates a Load Balancer Health Check
  2. deleteLBHealthCheck Deletes a LB Health Check.
  3. listLBHealthCheck Lists LB Health check

NetScaler Nitro API's classes :

lbmonitor
service
service_lbmonitor_binding

Sample Code to add monitor :

lbmonitor mymon = new lbmonitor();
mymon.set_monitorname("cshttpmon");
mymon.set_type(lbmonitor.typeEnum.HTTP);
lbmonitor.add(ns_session, mymon);

UI flow

  1. A new dialog will be shown to when clicked on the above button, so that user can provide the health check params
  2. if the health check is configured then status of the health check will be shown next to the VM in details page of LB rule.

...