Module Values.NodeSource

A structure that represents a node in a dependency graph, containing information about a service, resource, or other entity and its characteristics.

Sourcetype nonrec t = {
  1. keyAttributes : Attributes.t option;
    (*

    The key attributes that identify this node, including Type, Name, and Environment information.

    *)
  2. name : String_.t option;
    (*

    The name of the entity represented by this node.

    *)
  3. nodeId : String_.t option;
    (*

    A unique identifier for this node within the dependency graph.

    *)
  4. operation : String_.t option;
    (*

    The operation associated with this node, if applicable.

    *)
  5. type_ : String_.t option;
    (*

    The type of entity represented by this node, such as Service or Resource.

    *)
  6. duration : Double.t option;
    (*

    The duration or processing time associated with this node, if applicable.

    *)
  7. status : String_.t option;
    (*

    The status of the entity represented by this node.

    *)
}
Sourceval make : ?keyAttributes:??? -> ?name:??? -> ?nodeId:??? -> ?operation:??? -> ?type_:??? -> ?duration:??? -> ?status:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t