Values.NodeSourceA structure that represents a node in a dependency graph, containing information about a service, resource, or other entity and its characteristics.
type nonrec t = {keyAttributes : Attributes.t option;The key attributes that identify this node, including Type, Name, and Environment information.
*)name : String_.t option;The name of the entity represented by this node.
*)nodeId : String_.t option;A unique identifier for this node within the dependency graph.
*)operation : String_.t option;The operation associated with this node, if applicable.
*)type_ : String_.t option;The type of entity represented by this node, such as Service or Resource.
*)duration : Double.t option;The duration or processing time associated with this node, if applicable.
*)status : String_.t option;The status of the entity represented by this node.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of Double.t
| `Map of
([> `String of KeyAttributeName.t ]
* [> `String of KeyAttributeValue.t ])
list
| `String of String_.t ])
list ]