Documentation ¶ Index ¶ type Graph type Link type Node Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Graph ¶ type Graph struct { Nodes *[]Node `json:"nodes"` Links *[]Link `json:"links"` } type Link ¶ type Link struct { Source string `json:"source"` Target string `json:"target"` Value int `json:"value"` } type Node ¶ type Node struct { Id string `json:"id"` Namespace string `json:"namespace"` Name string `json:"name"` Type string `json:"type"` Status string `json:"status,omitempty"` StatusMessage string `json:"statusmessage,omitempty"` } Source Files ¶ View all Source files types.go Click to show internal directories. Click to hide internal directories.