Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / impl / MonitoringBusinessLogic.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.components.impl;
22
23 import fj.data.Either;
24 import org.openecomp.sdc.be.dao.api.ActionStatus;
25 import org.openecomp.sdc.be.dao.impl.MonitoringDao;
26 import org.openecomp.sdc.be.impl.ComponentsUtils;
27 import org.openecomp.sdc.common.monitoring.MonitoringEvent;
28 import org.openecomp.sdc.exception.ResponseFormat;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.stereotype.Component;
32
33 @Component("monitoringBusinessLogic")
34 public class MonitoringBusinessLogic {
35
36     private static final Logger log = LoggerFactory.getLogger(MonitoringBusinessLogic.class);
37
38     @javax.annotation.Resource
39     private MonitoringDao monitoringDao;
40
41     @javax.annotation.Resource
42     private ComponentsUtils componentsUtils;
43
44     public Either<Boolean, ResponseFormat> logMonitoringEvent(MonitoringEvent monitoringEvent) {
45         if (monitoringDao == null) {
46             return Either.right(componentsUtils.getResponseFormat(ActionStatus.GENERAL_ERROR));
47         }
48         ActionStatus status = monitoringDao.addRecord(monitoringEvent);
49         if (!status.equals(ActionStatus.OK)) {
50             log.warn("Failed to persist monitoring event: {}", status);
51             return Either.right(componentsUtils.getResponseFormat(ActionStatus.GENERAL_ERROR));
52         }
53         return Either.left(true);
54     }
55
56     public String getEsHost() {
57
58         String res = monitoringDao.getEsHost();
59         res = res.replaceAll("[\\[\\]]", "");
60         res = res.split(",")[0];
61         res = res.replaceAll("[']", "");
62         res = res.split(":")[0];
63         return res;
64     }
65
66     public String getEsPort() {
67         return monitoringDao.getEsPort();
68     }
69
70 }