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 @@ -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.
Expand Down Expand Up @@ -120,8 +120,7 @@ vars: # Optional
output:
sourceId: <cel-string>
targetId: <cel-string>
typeName: <cel-string>
typeIdentifier: <cel-string> # Optional
dependencyType: <cel-string> # Optional: 'HIERARCHICAL', 'CONNECTION' or 'UNCLASSIFIED' (default)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like a left-over, but it's not optional (anymore)

expireAfter: duration-ms
----

Expand Down