Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ vars: # Optional
output:
sourceId: <cel-string>
targetId: <cel-string>
typeName: <cel-string>
dependencyType: <cel-string> # Optional: 'HIERARCHICAL', 'CONNECTION' or 'UNCLASSIFIED' (default)
dependencyType: <cel-string> # 'HIERARCHICAL', 'CONNECTION' or 'UNCLASSIFIED' (default)
expireAfter: duration-ms
----

Expand Down