DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
for default value ("/") a single forward slash Load Balancing sends the query to HTTP server's default home page, whether that default page is named index.html, default.html, or a different name. Default value with a single forward slash ("/").
Using NS API/ haproxy commands to create/delete/modify the health check monitor
Available to User.
Request parameters:
lbruleid
pingPath
responsetime
intervaltime
healthythresshold
unhealthythresshold
By using the createLBHealthCheck api command we can create the healtcheck monitor for the services in the Rule.When new VM’s got assigned to the rule, monitor should be added to these services also.
Availabler to User
Request Parameters:
id : id of the healthcheck policy
To delete the healthcheck/monitor, call the deleteLBHealthCheck api which will delete health check from the LB rule.
Availability to user
request Parameters:
lbruleid : id of the LB rule.
Using the listLBHealthCheck, health check created for the LB rule will be retrieved.
This is a batch operation. To modify the health check, first call deleteLBHealthCheck which will delete the already existing health check and call createLBHealthCheck with the new configuration parameters.
Note: if the new configuration parameters were not able to be applied, then it won’t restore the old health check.
To delete the healthcheck/monitor, call the deleteLBHealthCheck api which will delete health check from the LB rule.
Using the listLBHealthCheck, health check created on the LB rule will be retrieved.
...
Id | Bigint(20) | Primary Key | Auto_increment |
uuid | varchar | Not null | |
Load_balancer_id | BigInt | Fk to Load_balancer_rule(id) | |
pingpath | varchar2(1024) | Default ("/") | |
Response_time | Int | Default (5 sec) | |
Healthcheck_interval | Double | Default (5 sec) | |
Healthy_thresshold | Int | Default (2) | |
Unhealth_thresshold | Int | Default(10) |
...