Files
weave-scope/render/pod.go
Bryan Boreham 871751873b Stop render package depending on probe
This dependency makes it harder to see the structure of the program,
and sometimes complicates compilation.

Mostly just changing the source of strings that are already exported
from the report package.  A few new strings have to be moved there,
plus the function `IsPauseImageName()`.
2019-09-15 17:03:04 +00:00

202 lines
5.8 KiB
Go

package render
import (
"context"
"strings"
"github.com/weaveworks/scope/report"
)
// Constants are used in the tests.
const (
UnmanagedID = "unmanaged"
UnmanagedMajor = "Unmanaged"
)
// UnmanagedIDPrefix is the prefix of unmanaged pseudo nodes
var UnmanagedIDPrefix = MakePseudoNodeID(UnmanagedID, "")
func renderKubernetesTopologies(rpt report.Report) bool {
// Render if any k8s topology has any nodes
topologies := []*report.Topology{
&rpt.Pod,
&rpt.Service,
&rpt.Deployment,
&rpt.DaemonSet,
&rpt.StatefulSet,
&rpt.CronJob,
&rpt.PersistentVolume,
&rpt.PersistentVolumeClaim,
&rpt.StorageClass,
&rpt.Job,
}
for _, t := range topologies {
if len(t.Nodes) > 0 {
return true
}
}
return false
}
func isPauseContainer(n report.Node) bool {
image, ok := n.Latest.Lookup(report.DockerImageName)
return ok && report.IsPauseImageName(image)
}
// PodRenderer is a Renderer which produces a renderable kubernetes
// graph by merging the container graph and the pods topology.
var PodRenderer = Memoise(ConditionalRenderer(renderKubernetesTopologies,
MakeFilter(
func(n report.Node) bool {
state, ok := n.Latest.Lookup(report.KubernetesState)
return !ok || !(state == report.StateDeleted || state == report.StateFailed)
},
MakeReduce(
PropagateSingleMetrics(report.Container,
MakeMap(propagatePodHost,
Map2Parent{topologies: []string{report.Pod}, noParentsPseudoID: UnmanagedID,
chainRenderer: MakeFilter(
ComposeFilterFuncs(
IsRunning,
Complement(isPauseContainer),
),
ContainerWithImageNameRenderer,
)},
),
),
ConnectionJoin(MapPod2IP, report.Pod),
KubernetesVolumesRenderer,
),
),
))
// Pods are not tagged with a Host parent, but their container children are.
// If n doesn't already have a host, copy it from one of the children
func propagatePodHost(n report.Node) report.Node {
if n.Topology != report.Pod {
return n
} else if _, found := n.Parents.Lookup(report.Host); found {
return n
}
done := false
n.Children.ForEach(func(child report.Node) {
if !done {
if hosts, found := child.Parents.Lookup(report.Host); found {
for _, h := range hosts {
n = n.WithParent(report.Host, h)
}
done = true
}
}
})
return n
}
// PodServiceRenderer is a Renderer which produces a renderable kubernetes services
// graph by merging the pods graph and the services topology.
//
// not memoised
var PodServiceRenderer = ConditionalRenderer(renderKubernetesTopologies,
renderParents(
report.Pod, []string{report.Service}, "",
PodRenderer,
),
)
// KubeControllerRenderer is a Renderer which combines all the 'controller' topologies.
// Pods with no controller are mapped to 'Unmanaged'
// We can't simply combine the rendered graphs of the high level objects as they would never
// have connections to each other.
//
// not memoised
var KubeControllerRenderer = ConditionalRenderer(renderKubernetesTopologies,
renderParents(
report.Pod, []string{report.Deployment, report.DaemonSet, report.StatefulSet, report.CronJob, report.Job}, UnmanagedID,
PodRenderer,
),
)
// renderParents produces a 'standard' renderer for mapping from some child topology to some parent topologies,
// by taking a child renderer, mapping to parents, propagating single metrics, and joining with full parent topology.
// Other options are as per Map2Parent.
func renderParents(childTopology string, parentTopologies []string, noParentsPseudoID string, childRenderer Renderer) Renderer {
selectors := make([]Renderer, len(parentTopologies))
for i, topology := range parentTopologies {
selectors[i] = TopologySelector(topology)
}
return MakeReduce(append(
selectors,
PropagateSingleMetrics(childTopology,
Map2Parent{topologies: parentTopologies, noParentsPseudoID: noParentsPseudoID,
chainRenderer: childRenderer},
),
)...)
}
// MapPod2IP maps pod nodes to their IP address. This allows pods to
// be joined directly with the endpoint topology.
func MapPod2IP(m report.Node) []string {
// if this pod belongs to the host's networking namespace
// we cannot use its IP to attribute connections
// (they could come from any other process on the host or DNAT-ed IPs)
if _, ok := m.Latest.Lookup(report.KubernetesIsInHostNetwork); ok {
return nil
}
ip, ok := m.Latest.Lookup(report.KubernetesIP)
if !ok || ip == "" {
return nil
}
return []string{report.MakeScopedEndpointNodeID("", ip, "")}
}
// Map2Parent is a Renderer which maps Nodes to some parent grouping.
type Map2Parent struct {
// Renderer to chain from
chainRenderer Renderer
// The topology IDs to look for parents in
topologies []string
// Either the ID prefix of the pseudo node to use for nodes without
// any parents in the group, eg. UnmanagedID, or "" to drop nodes without any parents.
noParentsPseudoID string
}
// Render implements Renderer
func (m Map2Parent) Render(ctx context.Context, rpt report.Report) Nodes {
input := m.chainRenderer.Render(ctx, rpt)
ret := newJoinResults(nil)
for _, n := range input.Nodes {
// Uncontained becomes Unmanaged/whatever if noParentsPseudoID is set
if m.noParentsPseudoID != "" && strings.HasPrefix(n.ID, UncontainedIDPrefix) {
id := MakePseudoNodeID(m.noParentsPseudoID, n.ID[len(UncontainedIDPrefix):])
ret.addChildAndChildren(n, id, Pseudo)
continue
}
// Propagate all pseudo nodes
if n.Topology == Pseudo {
ret.passThrough(n)
continue
}
added := false
// For each topology, map to any parents we can find
for _, topology := range m.topologies {
if groupIDs, ok := n.Parents.Lookup(topology); ok {
for _, id := range groupIDs {
ret.addChildAndChildren(n, id, topology)
added = true
}
}
}
if !added && m.noParentsPseudoID != "" {
// Map to pseudo node
id := MakePseudoNodeID(m.noParentsPseudoID, report.ExtractHostID(n))
ret.addChildAndChildren(n, id, Pseudo)
}
}
return ret.result(input)
}