aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-logging-lib/openecomp-logging-api/src/main/java/org/openecomp/core/logging/api/annotations/Metrics.java
blob: 1588bcafc0f20ef06902349dbee84b141825535e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.core.logging.api.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Indicates a method whose execution time should be measured and logged as required for OPENECOMP
 * metrics.
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Metrics {
}