00cfba6e9e12c3b4a5b4d9037664368272b99b7e
[aaf/cadi.git] / sidecar / rproxy / src / main / java / org / onap / aaf / rproxy / logging / ReverseProxyMethodLogTime.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aaf
4  * ================================================================================
5  * Copyright © 2018 European Software Marketing Ltd.
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 package org.onap.aaf.rproxy.logging;
21
22 import org.aspectj.lang.ProceedingJoinPoint;
23 import org.aspectj.lang.annotation.Around;
24 import org.aspectj.lang.annotation.Aspect;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.context.annotation.Configuration;
28
29 @Aspect
30 @Configuration
31 public class ReverseProxyMethodLogTime {
32
33     private static final Logger LOGGER = LoggerFactory.getLogger(ReverseProxyMethodLogTime.class);
34
35     @Around("@annotation(org.onap.aaf.rproxy.logging.ReverseProxyMethodLogTimeAnnotation)")
36     public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
37
38         long startTime = System.currentTimeMillis();
39
40         Object object = joinPoint.proceed();
41
42         long duration = System.currentTimeMillis() - startTime;
43
44         LOGGER.info("Time taken by {} is {} ms", joinPoint, duration);
45
46         return object;
47     }
48
49
50
51 }