Topology UI Object

Defines the schema for configuring the UI components of the Real-Time Topology Mesh feature.

API Endpointhttps://api.bigpanda.io/resources/v2.0/topologies
Supported MethodsPOST, GET, PUT, DELETE

Parameters

The Topology UI object schema includes the following attributes:

AttributeDescriptionType
linksLinks present in the topology model. Every item in the array is comprised of a link source and a link target, as follows:

Attributes:
- source - The source tag of the link in the topology model.
- target - The target tag of the link in the topology model.
Array
created_atUnix epoch time when the topology model was created (in seconds).Number
created_byThe autogenerated ID of the user who created the topology model.String
updated_atUnix epoch time when the topology model was last updated (in seconds).Number
updated_byThe autogenerated ID of the user who last updated the topology model.String

Sample Object:

{
      "links":[
         {
            "source":"host",
            "target":"check"
         },
         {
            "source":"host",
            "target":"cluster"
         }
      ]
}