diff options
author | Shaaban Ebrahim <shaaban.eltanany.ext@orange.com> | 2019-10-24 12:37:21 +0200 |
---|---|---|
committer | Shaaban Ebrahim <shaaban.eltanany.ext@orange.com> | 2019-11-06 12:45:51 +0200 |
commit | 843d1f7ec7c45e3aad1d5198b776bb99a235448d (patch) | |
tree | 231c92a592b13e05eb670c2c27d47309a5143118 /ms/sdclistener/application | |
parent | e967b59012d3aec0a5ad01d1ad508fc1e0a61a5f (diff) |
Update on Health-api
-add Combined health check
-add combined metrics check
Issue-ID: CCSDK-1669
Signed-off-by: Shaaban Ebrahim <shaaban.eltanany.ext@orange.com>
Change-Id: Idb3c7f67b3f22bd6069f75c193ae458c346fb2ac
Diffstat (limited to 'ms/sdclistener/application')
-rw-r--r-- | ms/sdclistener/application/pom.xml | 8 | ||||
-rw-r--r-- | ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/actuator/indicator/SDCListenerCustomIndicator.java | 48 |
2 files changed, 56 insertions, 0 deletions
diff --git a/ms/sdclistener/application/pom.xml b/ms/sdclistener/application/pom.xml index 2e6c183a9..5f359575f 100644 --- a/ms/sdclistener/application/pom.xml +++ b/ms/sdclistener/application/pom.xml @@ -53,6 +53,14 @@ <scope>test</scope> </dependency> + + + <dependency> + <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId> + <artifactId>health-api-common</artifactId> + <version>0.7.0-SNAPSHOT</version> + </dependency> + <!-- SDC Distribution client dependency --> <dependency> <groupId>org.onap.sdc.sdc-distribution-client</groupId> diff --git a/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/actuator/indicator/SDCListenerCustomIndicator.java b/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/actuator/indicator/SDCListenerCustomIndicator.java new file mode 100644 index 000000000..11fd2c24c --- /dev/null +++ b/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/actuator/indicator/SDCListenerCustomIndicator.java @@ -0,0 +1,48 @@ +/* + * Copyright © 2019-2020 Orange. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.onap.ccsdk.cds.sdclistener.actuator.indicator; + + +import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthApiResponse; +import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthCheckStatus; +import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.service.health.SDCListenerHealthCheck; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.actuate.health.AbstractHealthIndicator; +import org.springframework.boot.actuate.health.Health.Builder; +import org.springframework.stereotype.Component; +/** + * Health Indicator for SDCListener. + * @author Shaaban Ebrahim + * @version 1.0 + */ +@Component +public class SDCListenerCustomIndicator extends AbstractHealthIndicator { + + @Autowired + private SDCListenerHealthCheck sDCListenerHealthCheck; + + @Override + protected void doHealthCheck(Builder builder) { + HealthApiResponse healthAPIResponse = sDCListenerHealthCheck.retrieveEndpointExecutionStatus(); + if (healthAPIResponse.getStatus() == HealthCheckStatus.UP) { + builder.up(); + } else { + builder.down(); + } + builder.withDetail("Services", healthAPIResponse.getChecks()); + } +} |