summaryrefslogtreecommitdiffstats
path: root/runtime-acm/src/test
diff options
context:
space:
mode:
authorsaul.gill <saul.gill@est.tech>2024-01-16 12:43:09 +0000
committersaul.gill <saul.gill@est.tech>2024-01-16 12:47:38 +0000
commite4a667b450fc076e59898be9f314bf4db300f1e5 (patch)
tree469c314d7b8b792ab75c4afd6d5f1617db063feb /runtime-acm/src/test
parent645ace3d5b8ce8600c0c58d58e5c6b887fd284e4 (diff)
Adding http tracing capability
Open telemetry tracing now supported in acm Issue-ID: POLICY-4875 Change-Id: I7423211f3b775825f24e4bd4b906f646a882747b Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'runtime-acm/src/test')
-rw-r--r--runtime-acm/src/test/resources/application-prometheus-noauth.yaml9
-rw-r--r--runtime-acm/src/test/resources/application-test.yaml21
2 files changed, 30 insertions, 0 deletions
diff --git a/runtime-acm/src/test/resources/application-prometheus-noauth.yaml b/runtime-acm/src/test/resources/application-prometheus-noauth.yaml
index 25187a6d0..b34491124 100644
--- a/runtime-acm/src/test/resources/application-prometheus-noauth.yaml
+++ b/runtime-acm/src/test/resources/application-prometheus-noauth.yaml
@@ -38,3 +38,12 @@ runtime:
servers:
- localhost
topic: POLICY-ACRUNTIME-PARTICIPANT
+
+tracing:
+ enabled: true
+ exporter:
+ endpoint: http://jaeger:4318
+ protocol: http
+ sampler:
+ jaeger-remote:
+ endpoint: http://jaeger:14250 \ No newline at end of file
diff --git a/runtime-acm/src/test/resources/application-test.yaml b/runtime-acm/src/test/resources/application-test.yaml
index aa4044534..cf0fa4c9d 100644
--- a/runtime-acm/src/test/resources/application-test.yaml
+++ b/runtime-acm/src/test/resources/application-test.yaml
@@ -41,3 +41,24 @@ runtime:
acmParameters:
acElementName: org.onap.policy.clamp.acm.AutomationCompositionElement
acNodeType: org.onap.policy.clamp.acm.AutomationComposition
+
+management:
+ endpoints:
+ web:
+ base-path: /
+ exposure:
+ include: health, metrics, prometheus
+ tracing:
+ propagation:
+ produce: b3
+ sampling:
+ probability: 1.0
+
+tracing:
+ enabled: true
+ exporter:
+ endpoint: http://jaeger:4317
+ protocol: grpc
+ sampler:
+ jaeger-remote:
+ endpoint: http://jaeger:14250 \ No newline at end of file