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 2df7907b3..81c1913ac 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 @@ -121,8 +121,7 @@ vars: # Optional output: sourceId: targetId: - typeName: - dependencyType: # Optional: 'HIERARCHICAL', 'CONNECTION' or 'UNCLASSIFIED' (default) + dependencyType: # 'HIERARCHICAL', 'CONNECTION' or 'UNCLASSIFIED' (default) expireAfter: duration-ms ----