diff options
author | saul.gill <saul.gill@est.tech> | 2024-02-01 16:51:26 +0000 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2024-02-07 13:19:28 +0000 |
commit | d0ed457d63e22c83e730c7929c7422b6780ad5d1 (patch) | |
tree | a21d988694c5045f9045aaaa2a3ff63b0238a95a /runtime-acm | |
parent | eb40ca7e9f01769ade8f1d3f3fbe262d85b8f8ef (diff) |
Share tracing context in all threads
Issue-ID: POLICY-4922
Change-Id: I8f5e99b597c989a26777233ef58ef5c4f9db4215
Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'runtime-acm')
2 files changed, 5 insertions, 3 deletions
diff --git a/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/commissioning/CommissioningProvider.java b/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/commissioning/CommissioningProvider.java index dd0ddaae9..3e4c96b4b 100644 --- a/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/commissioning/CommissioningProvider.java +++ b/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/commissioning/CommissioningProvider.java @@ -1,6 +1,6 @@ /*- * ============LICENSE_START======================================================= - * Copyright (C) 2021-2023 Nordix Foundation. + * Copyright (C) 2021-2024 Nordix Foundation. * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); @@ -21,6 +21,7 @@ package org.onap.policy.clamp.acm.runtime.commissioning; +import io.opentelemetry.context.Context; import jakarta.ws.rs.core.Response.Status; import java.util.HashSet; import java.util.UUID; @@ -60,7 +61,7 @@ public class CommissioningProvider { private final ParticipantPrimePublisher participantPrimePublisher; private final AcRuntimeParameterGroup acRuntimeParameterGroup; - private final ExecutorService executor = Executors.newFixedThreadPool(1); + private final ExecutorService executor = Context.taskWrapping(Executors.newFixedThreadPool(1)); private CommissioningResponse createCommissioningResponse(UUID compositionId, ToscaServiceTemplate serviceTemplate) { diff --git a/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java b/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java index 69d48fbc6..a5dc0e78e 100644 --- a/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java +++ b/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java @@ -21,6 +21,7 @@ package org.onap.policy.clamp.acm.runtime.supervision; import io.micrometer.core.annotation.Timed; +import io.opentelemetry.context.Context; import java.util.Map; import java.util.Objects; import java.util.Set; @@ -64,7 +65,7 @@ public class SupervisionAcHandler { private final AcElementPropertiesPublisher acElementPropertiesPublisher; private final AutomationCompositionMigrationPublisher acCompositionMigrationPublisher; - private final ExecutorService executor = Executors.newFixedThreadPool(1); + private final ExecutorService executor = Context.taskWrapping(Executors.newFixedThreadPool(1)); /** * Handle Deploy an AutomationComposition instance. |