...
3- Check health status of the API service with following command. Please ensure to:
Code Block |
---|
language | bash |
---|
title | Health Check |
---|
|
curl --user healthcheck:zb\!XztG34 -H “Accept=application/json, Content-Type=application/json” -k https://<VM_IP_ADDRESS>:6969/healthcheck
e.g,
$ curl --user healthcheck:zb\!XztG34 -H “Accept=application/json, Content-Type=application/json” -k https://10.12.6.93:6969/healthcheck |
4- Health Check should return following output:
Code Block |
---|
language | bash |
---|
title | Health Check Output |
---|
|
{"name":"Policy API","url":"self","healthy":true,"code":200,"message":"alive"} |
54- Check for statistics API with Sample Output
Code Block |
---|
language | bash |
---|
title | Statistics API |
---|
|
$ curl --user healthcheck:zb\!XztG34 -H “Accept=application/json, Content-Type=application/json” -k https://10.12.6.93:6969/statistics |
6- Sample output:
Code Block |
---|
language | bash |
---|
title | Statistics output |
---|
|
{"code":200,"totalApiCallCount":0,"apiCallSuccessCount":0,"apiCallFailureCount":0,"totalPolicyGetCount":0,"totalPolicyPostCount":0,"totalTemplateGetCount":0,"totalTemplatePostCount":0,"policyGetSuccessCount":0,"policyGetFailureCount":0,"policyPostSuccessCount":0,"policyPostFailureCount":0,"templateGetSuccessCount":0,"templateGetFailureCount":0,"templatePostSuccessCount":0,"templatePostFailureCount":0} |
...