From 96718a0c2bc92168d1428f09c4a95f734295a6c6 Mon Sep 17 00:00:00 2001 From: Alejandro Acevedo Date: Wed, 24 Jun 2026 09:32:00 +0200 Subject: [PATCH] STAC-24992: Update docs to reflect dependencyType on RelationMapping rather than relatioType ... --- .../custom-integrations/otelmappings/getting-started.adoc | 4 ++-- .../setup/custom-integrations/otelmappings/schemas-ref.adoc | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/getting-started.adoc b/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/getting-started.adoc index 528fa61d4..e959a1e3e 100644 --- a/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/getting-started.adoc +++ b/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/getting-started.adoc @@ -87,7 +87,7 @@ A relation mapping describes how a connection between two components is created. Each relation mapping: * Resolves a `sourceId` and a `targetId`. -* Assigns a relation type. +* Assigns a dependency type. * Produces a directed edge. Relations are created once both the source and target components exist. @@ -235,7 +235,7 @@ output: sourceId: >- 'urn:opentelemetry:namespace/' + vars.namespace + ':service/' + vars.service + ':serviceInstance/' + vars.instanceId targetId: "'urn:opentelemetry:process/' + vars.hostname + ':' + vars.pid" - typeName: "'executes'" + dependencyType: "'CONNECTION'" expireAfter: 900000 ---- diff --git a/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/schemas-ref.adoc b/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/schemas-ref.adoc index 225c8a450..28116ce1b 100644 --- a/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/schemas-ref.adoc +++ b/docs/latest/modules/en/pages/setup/custom-integrations/otelmappings/schemas-ref.adoc @@ -85,7 +85,7 @@ expireAfter: duration-ms Each relation mapping: * Resolves a `sourceId` and `targetId`. -* Assigns a relation type. +* Assigns a dependency type. * Produces a directed edge between existing or future components. Relations are materialised when source and target components exist. @@ -120,8 +120,7 @@ vars: # Optional output: sourceId: targetId: - typeName: - typeIdentifier: # Optional + dependencyType: # Optional: 'HIERARCHICAL', 'CONNECTION' or 'UNCLASSIFIED' (default) expireAfter: duration-ms ----