diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2023-11-30 10:05:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-11-30 10:05:03 +0000 |
commit | 0d3d2f5968afa2bd5d8a64a677439d930710abb8 (patch) | |
tree | 0374b00c8fdd76558aeb772049de466a3cb00b2a /cps-ncmp-rest | |
parent | 76d59ca497e878fa552cf2b7e7a157ff4c3394c0 (diff) | |
parent | 13c9e8d4d9b087d429b874435d29dc253c1a3481 (diff) |
Merge "Add metrics for NCMP passthrough read operation"
Diffstat (limited to 'cps-ncmp-rest')
-rwxr-xr-x | cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/controller/NetworkCmProxyController.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/controller/NetworkCmProxyController.java b/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/controller/NetworkCmProxyController.java index ef70a3763c..be33c6a010 100755 --- a/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/controller/NetworkCmProxyController.java +++ b/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/controller/NetworkCmProxyController.java @@ -30,6 +30,7 @@ import static org.onap.cps.ncmp.api.impl.operations.OperationType.DELETE; import static org.onap.cps.ncmp.api.impl.operations.OperationType.PATCH; import static org.onap.cps.ncmp.api.impl.operations.OperationType.UPDATE; +import io.micrometer.core.annotation.Timed; import java.util.Collection; import java.util.List; import java.util.Map; @@ -92,16 +93,14 @@ public class NetworkCmProxyController implements NetworkCmProxyApi { * @param includeDescendants whether to include descendants or not * @return {@code ResponseEntity} response from dmi plugin */ - @Override + @Timed(value = "cps.ncmp.controller.get", description = "Time taken to get resource data from datastore") public ResponseEntity<Object> getResourceDataForCmHandle(final String datastoreName, final String cmHandle, final String resourceIdentifier, final String optionsParamInQuery, final String topicParamInQuery, final Boolean includeDescendants) { - - final NcmpDatastoreRequestHandler ncmpDatastoreRequestHandler = getNcmpDatastoreRequestHandler(datastoreName); return ncmpDatastoreRequestHandler.executeRequest(datastoreName, cmHandle, resourceIdentifier, optionsParamInQuery, topicParamInQuery, includeDescendants); |