Documentation ¶
Index ¶
- Constants
- Variables
- func IsApplication(n report.Node) bool
- func IsNotPseudo(n report.Node) bool
- func IsRunning(n report.Node) bool
- func LocalNetworks(r report.Report) report.Networks
- func MakeGroupNodeTopology(originalTopology, key string) string
- func MakePseudoNodeID(parts ...string) string
- func Map2Parent(topology string) func(n report.Node, _ report.Networks) report.Nodes
- func MapContainer2ContainerImage(n report.Node, _ report.Networks) report.Nodes
- func MapContainer2Hostname(n report.Node, _ report.Networks) report.Nodes
- func MapContainer2IP(m report.Node) []string
- func MapContainer2Pod(n report.Node, _ report.Networks) report.Nodes
- func MapContainerImage2Name(n report.Node, _ report.Networks) report.Nodes
- func MapEndpoint2Host(n report.Node, local report.Networks) report.Nodes
- func MapEndpoint2Process(n report.Node, local report.Networks) report.Nodes
- func MapEndpoint2Pseudo(n report.Node, local report.Networks) report.Nodes
- func MapPod2IP(m report.Node) []string
- func MapProcess2Container(n report.Node, _ report.Networks) report.Nodes
- func MapProcess2Name(n report.Node, _ report.Networks) report.Nodes
- func MapToEmpty(n report.Node, _ report.Networks) report.Nodes
- func MapX2Host(n report.Node, _ report.Networks) report.Nodes
- func NewDerivedNode(id string, node report.Node) report.Node
- func NewDerivedPseudoNode(id string, node report.Node) report.Node
- func Noop(_ report.Node) bool
- func ResetCache()
- type Condition
- type CustomRenderer
- type Decorator
- type Filter
- type FilterFunc
- type Map
- type MapFunc
- type Reduce
- type Renderer
- func ApplyDecorators(renderer Renderer) Renderer
- func ColorConnected(r Renderer) Renderer
- func ConditionalRenderer(c Condition, r Renderer) Renderer
- func FilterEmpty(topology string, r Renderer) Renderer
- func FilterNonProcspied(r Renderer) Renderer
- func FilterUnconnected(r Renderer) Renderer
- func MakeFilter(f FilterFunc, r Renderer) Renderer
- func MakeFilterPseudo(f FilterFunc, r Renderer) Renderer
- func MakeMap(f MapFunc, r Renderer) Renderer
- func MakeReduce(renderers ...Renderer) Renderer
- func Memoise(r Renderer) Renderer
- func ShortLivedConnectionJoin(r Renderer, toIPs func(report.Node) []string) Renderer
- type Stats
- type TopologySelector
Constants ¶
const ( UncontainedID = "uncontained" UncontainedMajor = "Uncontained" // Topology for IPs so we can differentiate them at the end IP = "IP" )
Constants are used in the tests.
const ( UnmanagedID = "unmanaged" UnmanagedMajor = "Unmanaged" )
Constants are used in the tests.
const ( TheInternetID = "theinternet" IncomingInternetID = "in-" + TheInternetID OutgoingInternetID = "out-" + TheInternetID InboundMajor = "The Internet" OutboundMajor = "The Internet" InboundMinor = "Inbound connections" OutboundMinor = "Outbound connections" // Topology for pseudo-nodes and IPs so we can differentiate them at the end Pseudo = "pseudo" )
Constants are used in the tests.
const IsConnected = "is_connected"
IsConnected is the key added to Node.Metadata by ColorConnected to indicate a node has an edge pointing to it or from it
Variables ¶
var ( Map2Service = Map2Parent(report.Service) Map2Deployment = Map2Parent(report.Deployment) Map2ReplicaSet = Map2Parent(report.ReplicaSet) )
The various ways of grouping pods
var ( SelectEndpoint = TopologySelector(report.Endpoint) SelectProcess = TopologySelector(report.Process) SelectContainer = TopologySelector(report.Container) SelectContainerImage = TopologySelector(report.ContainerImage) SelectHost = TopologySelector(report.Host) SelectPod = TopologySelector(report.Pod) SelectService = TopologySelector(report.Service) SelectDeployment = TopologySelector(report.Deployment) SelectReplicaSet = TopologySelector(report.ReplicaSet) )
The topology selectors implement a Renderer which fetch the nodes from the various report topologies.
var ContainerHostnameRenderer = FilterEmpty(report.Container, MakeReduce( MakeMap( MapContainer2Hostname, ContainerWithImageNameRenderer, ), MakeMap( MapToEmpty, MakeMap( MapContainer2Hostname, ContainerRenderer, ), ), ), )
ContainerHostnameRenderer is a Renderer which produces a renderable container by hostname graph..
var ContainerImageRenderer = FilterEmpty(report.Container, MakeMap( MapContainerImage2Name, MakeReduce( MakeMap( MapContainer2ContainerImage, ContainerWithImageNameRenderer, ), SelectContainerImage, ), ), )
ContainerImageRenderer is a Renderer which produces a renderable container image graph by merging the container graph and the container image topology.
var ContainerRenderer = MakeFilter( func(n report.Node) bool { state, ok := n.Latest.Lookup(docker.ContainerState) return !ok || state != docker.StateDeleted }, MakeReduce( MakeMap( MapProcess2Container, ProcessRenderer, ), ShortLivedConnectionJoin(SelectContainer, MapContainer2IP), SelectContainer, ), )
ContainerRenderer is a Renderer which produces a renderable container graph by merging the process graph and the container topology. NB We only want processes in container _or_ processes with network connections but we need to be careful to ensure we only include each edge once, by only including the ProcessRenderer once.
var ContainerWithImageNameRenderer = ApplyDecorators(containerWithImageNameRenderer{ContainerRenderer})
ContainerWithImageNameRenderer is a Renderer which produces a container graph where the ranks are the image names, not their IDs
var DeploymentRenderer = ConditionalRenderer(renderKubernetesTopologies, ApplyDecorators( MakeMap( PropagateSingleMetrics(report.ReplicaSet), MakeReduce( MakeMap( Map2Deployment, ReplicaSetRenderer, ), SelectDeployment, ), ), ), )
DeploymentRenderer is a Renderer which produces a renderable kubernetes deployments graph by merging the pods graph and the deployments topology.
var EndpointRenderer = FilterNonProcspied(SelectEndpoint)
EndpointRenderer is a Renderer which produces a renderable endpoint graph.
var HostRenderer = ApplyDecorators(MakeReduce( MakeMap( MapEndpoint2Host, EndpointRenderer, ), MakeMap( MapX2Host, ProcessRenderer, ), MakeMap( MapX2Host, ContainerRenderer, ), MakeMap( MapX2Host, ContainerImageRenderer, ), MakeMap( MapX2Host, PodRenderer, ), SelectHost, ))
HostRenderer is a Renderer which produces a renderable host graph from the host topology.
var IsStopped = Complement(IsRunning)
IsStopped checks if the node is *not* a running docker container
var IsSystem = Complement(IsApplication)
IsSystem checks if the node is a "system" node
var PodRenderer = ConditionalRenderer(renderKubernetesTopologies, ApplyDecorators(MakeFilter( func(n report.Node) bool { state, ok := n.Latest.Lookup(kubernetes.State) return (!ok || state != kubernetes.StateDeleted) }, MakeMap( PropagateSingleMetrics(report.Container), MakeReduce( MakeMap( MapContainer2Pod, ContainerWithImageNameRenderer, ), ShortLivedConnectionJoin(SelectPod, MapPod2IP), SelectPod, ), ), )), )
PodRenderer is a Renderer which produces a renderable kubernetes graph by merging the container graph and the pods topology.
var PodServiceRenderer = ConditionalRenderer(renderKubernetesTopologies, ApplyDecorators( MakeMap( PropagateSingleMetrics(report.Pod), MakeReduce( MakeMap( Map2Service, PodRenderer, ), SelectService, ), ), ), )
PodServiceRenderer is a Renderer which produces a renderable kubernetes services graph by merging the pods graph and the services topology.
var ProcessNameRenderer = ConditionalRenderer(renderProcesses, MakeMap( MapProcess2Name, ProcessRenderer, ), )
ProcessNameRenderer is a Renderer which produces a renderable process name graph by munging the progess graph.
var ProcessRenderer = ConditionalRenderer(renderProcesses, ApplyDecorators(ColorConnected(MakeReduce( MakeMap( MapEndpoint2Process, EndpointRenderer, ), SelectProcess, ))), )
ProcessRenderer is a Renderer which produces a renderable process graph by merging the endpoint graph and the process topology.
var ProcessWithContainerNameRenderer = processWithContainerNameRenderer{ProcessRenderer}
ProcessWithContainerNameRenderer is a Renderer which produces a process graph enriched with container names where appropriate
var ReplicaSetRenderer = ConditionalRenderer(renderKubernetesTopologies, ApplyDecorators( MakeMap( PropagateSingleMetrics(report.Pod), MakeReduce( MakeMap( Map2ReplicaSet, PodRenderer, ), SelectReplicaSet, ), ), ), )
ReplicaSetRenderer is a Renderer which produces a renderable kubernetes replica sets graph by merging the pods graph and the replica sets topology.
Functions ¶
func IsApplication ¶ added in v0.15.0
IsApplication checks if the node is an "application" node
func IsNotPseudo ¶ added in v0.16.0
IsNotPseudo returns true if the node is not a pseudo node or the internet nodes.
func LocalNetworks ¶
LocalNetworks returns a superset of the networks (think: CIDRs) that are "local" from the perspective of each host represented in the report. It's used to determine which nodes in the report are "remote", i.e. outside of our infrastructure.
func MakeGroupNodeTopology ¶ added in v0.15.0
MakeGroupNodeTopology joins the parts of a group topology into the topology of a group node
func MakePseudoNodeID ¶
MakePseudoNodeID joins the parts of an id into the id of a pseudonode
func Map2Parent ¶ added in v0.15.0
Map2Parent maps Nodes to some parent grouping.
func MapContainer2ContainerImage ¶
MapContainer2ContainerImage maps container Nodes to container image Nodes.
If this function is given a node without a docker_image_id (including other pseudo nodes), it will produce an "Uncontained" pseudo node.
Otherwise, this function will produce a node with the correct ID format for a container, but without any Major or Minor labels. It does not have enough info to do that, and the resulting graph must be merged with a container graph to get that info.
func MapContainer2Hostname ¶ added in v0.9.0
MapContainer2Hostname maps container Nodes to 'hostname' renderabled nodes..
func MapContainer2IP ¶ added in v0.7.0
MapContainer2IP maps container nodes to their IP addresses (outputs multiple nodes). This allows container to be joined directly with the endpoint topology.
func MapContainer2Pod ¶ added in v0.9.0
MapContainer2Pod maps container Nodes to pod Nodes.
If this function is given a node without a kubernetes_pod_id (including other pseudo nodes), it will produce an "Unmanaged" pseudo node.
Otherwise, this function will produce a node with the correct ID format for a container, but without any Major or Minor labels. It does not have enough info to do that, and the resulting graph must be merged with a container graph to get that info.
func MapContainerImage2Name ¶ added in v0.5.0
MapContainerImage2Name ignores image versions
func MapEndpoint2Host ¶ added in v0.14.0
MapEndpoint2Host takes nodes from the endpoint topology and produces host nodes or pseudo nodes.
func MapEndpoint2Process ¶
MapEndpoint2Process maps endpoint Nodes to process Nodes.
If this function is given a pseudo node, then it will just return it; Pseudo nodes will never have pids in them, and therefore will never be able to be turned into a Process node.
Otherwise, this function will produce a node with the correct ID format for a process, but without any Major or Minor labels. It does not have enough info to do that, and the resulting graph must be merged with a process graph to get that info.
func MapEndpoint2Pseudo ¶ added in v0.14.0
MapEndpoint2Pseudo makes internet of host pesudo nodes from a endpoint node.
func MapPod2IP ¶ added in v0.16.0
MapPod2IP maps pod nodes to their IP address. This allows pods to be joined directly with the endpoint topology.
func MapProcess2Container ¶
MapProcess2Container maps process Nodes to container Nodes.
If this function is given a node without a docker_container_id (including other pseudo nodes), it will produce an "Uncontained" pseudo node.
Otherwise, this function will produce a node with the correct ID format for a container, but without any Major or Minor labels. It does not have enough info to do that, and the resulting graph must be merged with a container graph to get that info.
func MapProcess2Name ¶
MapProcess2Name maps process Nodes to Nodes for each process name.
This mapper is unlike the other foo2bar mappers as the intention is not to join the information with another topology.
func MapToEmpty ¶ added in v0.15.0
MapToEmpty removes all the attributes, children, etc, of a node. Useful when we just want to count the presence of nodes.
func MapX2Host ¶ added in v0.12.0
MapX2Host maps any Nodes to host Nodes.
If this function is given a node without a hostname (including other pseudo nodes), it will drop the node.
Otherwise, this function will produce a node with the correct ID format for a container, but without any Major or Minor labels. It does not have enough info to do that, and the resulting graph must be merged with a container graph to get that info.
func NewDerivedNode ¶ added in v0.7.0
NewDerivedNode makes a node based on node, but with a new ID
func NewDerivedPseudoNode ¶ added in v0.14.0
NewDerivedPseudoNode makes a new pseudo node with the node as a child
Types ¶
type Condition ¶ added in v0.15.0
Condition is a predecate over the entire report that can evaluate to true or false.
type CustomRenderer ¶ added in v0.7.0
CustomRenderer allow for mapping functions that received the entire topology in one call - useful for functions that need to consider the entire graph. We should minimise the use of this renderer type, as it is very inflexible.
type Decorator ¶ added in v0.15.0
Decorator transforms one renderer to another. e.g. Filters.
func ComposeDecorators ¶ added in v0.15.0
ComposeDecorators composes decorators into one.
func MakeFilterDecorator ¶ added in v0.16.0
func MakeFilterDecorator(f FilterFunc) Decorator
MakeFilterDecorator makes a decorator that filters out non-pseudo nodes which match the predicate.
func MakeFilterPseudoDecorator ¶ added in v0.16.0
func MakeFilterPseudoDecorator(f FilterFunc) Decorator
MakeFilterPseudoDecorator makes a decorator that filters out all nodes (including pseudo nodes) which match the predicate.
type Filter ¶ added in v0.7.0
type Filter struct { Renderer FilterFunc FilterFunc }
Filter removes nodes from a view based on a predicate.
type FilterFunc ¶ added in v0.15.0
FilterFunc is the function type used by Filters
func Complement ¶ added in v0.14.0
func Complement(f FilterFunc) FilterFunc
Complement takes a FilterFunc f and returns a FilterFunc that has the same effects, if any, and returns the opposite truth value.
func ComposeFilterFuncs ¶ added in v0.15.0
func ComposeFilterFuncs(fs ...FilterFunc) FilterFunc
ComposeFilterFuncs composes filterfuncs into a single FilterFunc checking all.
func HasChildren ¶ added in v0.15.0
func HasChildren(topology string) FilterFunc
HasChildren returns true if the node has no children from the specified topology.
func IsNamespace ¶ added in v0.15.0
func IsNamespace(namespace string) FilterFunc
IsNamespace checks if the node is a pod/service in the specified namespace
type Map ¶
Map is a Renderer which produces a set of Nodes from the set of Nodes produced by another Renderer.
type MapFunc ¶
MapFunc is anything which can take an arbitrary Node and return a set of other Nodes.
If the output is empty, the node shall be omitted from the rendered topology.
func PropagateSingleMetrics ¶ added in v0.16.0
PropagateSingleMetrics puts metrics from one of the children onto the parent iff there is only one child of that type.
type Reduce ¶
type Reduce []Renderer
Reduce renderer is a Renderer which merges together the output of several other renderers.
type Renderer ¶
type Renderer interface { Render(report.Report, Decorator) report.Nodes Stats(report.Report, Decorator) Stats }
Renderer is something that can render a report to a set of Nodes.
func ApplyDecorators ¶ added in v0.15.0
ApplyDecorators returns a renderer which will apply the given decorators to the child render.
func ColorConnected ¶ added in v0.7.0
ColorConnected colors nodes with the IsConnected key if they have edges to or from them. Edges to/from yourself are not counted here (see #656).
func ConditionalRenderer ¶ added in v0.15.0
ConditionalRenderer renders nothing if the condition is false, otherwise it defers to the wrapped Renderer.
func FilterEmpty ¶ added in v0.15.0
FilterEmpty is a Renderer which filters out nodes which have no children from the specified topology.
func FilterNonProcspied ¶ added in v0.14.0
FilterNonProcspied removes endpoints which were not found in procspy.
func FilterUnconnected ¶
FilterUnconnected produces a renderer that filters unconnected nodes from the given renderer
func MakeFilter ¶ added in v0.12.0
func MakeFilter(f FilterFunc, r Renderer) Renderer
MakeFilter makes a new Filter (that ignores pseudo nodes).
func MakeFilterPseudo ¶ added in v0.16.0
func MakeFilterPseudo(f FilterFunc, r Renderer) Renderer
MakeFilterPseudo makes a new Filter that will not ignore pseudo nodes.
func MakeReduce ¶
MakeReduce is the only sane way to produce a Reduce Renderer.
type Stats ¶ added in v0.8.0
type Stats struct {
FilteredNodes int
}
Stats is the type returned by Renderer.Stats
type TopologySelector ¶ added in v0.7.0
type TopologySelector string
TopologySelector selects a single topology from a report. NB it is also a Renderer!