summaryrefslogtreecommitdiffstats
path: root/docs/sections/healthcheck.rst
diff options
context:
space:
mode:
authorVijay VK <vv770d@att.com>2018-09-19 04:30:37 +0100
committerVENKATESH KUMAR <vv770d@att.com>2018-09-19 00:16:17 -0400
commit2648c6dbd01ad46d3979828b8c4eaa5909973c83 (patch)
tree3a2e64ee0133d68072b1ba19e787c54a4904aa58 /docs/sections/healthcheck.rst
parente57c8dc9fe38c997f5c28901b6c92100fa25771c (diff)
First draft doc update for r3
Change-Id: Ibf5e4751534f38a05c7b783391aec5e029d4ca3f Signed-off-by: VENKATESH KUMAR <vv770d@att.com> Issue-ID: DCAEGEN2-573
Diffstat (limited to 'docs/sections/healthcheck.rst')
-rw-r--r--docs/sections/healthcheck.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/sections/healthcheck.rst b/docs/sections/healthcheck.rst
new file mode 100644
index 00000000..10572fc8
--- /dev/null
+++ b/docs/sections/healthcheck.rst
@@ -0,0 +1,19 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+.. http://creativecommons.org/licenses/by/4.0
+
+HealthCheck
+===========
+
+DCAE Healthcheck .
+
+OOM Deployment
+--------------
+
+ In OOM deployments DCAE healthcheck are reported by separate service - dcae-healthcheck; this is deployment of org.onap.dcaegen2.deployments.healthcheck-container which is built from dcaegen2/deployment repo - healthcheck-container module. The container includes list of deployments done in DCAE (both via helm charts and Cloudify) for which periodic health check is performed. For helm deployed component - servicename defined is charts are used and for cloudify, the deployments identified in bootstrap are prefixed with release name. The container itself is deployed via helm charts (oom/kubernetes/dcaegen2/charts/dcae-healthcheck). This polls the deployments specified periodically and reports the status. The service can be queried for status as below.
+
+ curl dcae-healthcheck
+ {"type":"summary","count":8,"ready":8,"items":[{"name":"dev-dcae-cloudify-manager","ready":1,"unavailable":0},{"name":"dep-config-binding-service","ready":1,"unavailable":0},{"name":"dep-deployment-handler","ready":1,"unavailable":0},{"name":"dep-inventory","ready":1,"unavailable":0},{"name":"dep-service-change-handler","ready":1,"unavailable":0},{"name":"dep-policy-handler","ready":1,"unavailable":0},{"name":"dep-dcae-ves-collector","ready":1,"unavailable":0},{"name":"dep-dcae-tca-analytics","ready":1,"unavailable":0}]}
+
+
+Heat Deployment
+---------------