docker-network-graph/docker-net-graph.py

119 lines
3.4 KiB
Python
Raw Normal View History

2018-08-31 04:50:58 +02:00
#!/usr/bin/python3
2016-09-29 23:48:22 +02:00
import os
import json
2018-08-31 04:50:58 +02:00
import argparse
import random
2018-08-31 04:50:58 +02:00
from docker import Client
2016-09-29 23:48:22 +02:00
from graphviz import Graph
# colorlover.scales["12"]["qual"]["Paired"] converted to hex strings
COLORS = ['#1f78b4', '#33a02c', '#e31a1c', '#ff7f00', '#6a3d9a', '#b15928', '#a6cee3', '#b2df8a', '#fdbf6f',
'#cab2d6', '#ffff99']
i = 0
def get_unique_color():
global i
if i < len(COLORS):
c = COLORS[i]
i += 1
else:
c = "#%06x".format(random.randint(0, 0xFFFFFF))
return c
2018-08-31 04:50:58 +02:00
def generate_graph(verbose: bool, file: str):
g = Graph(comment='Docker Network Graph', engine="sfdp", format='png',
graph_attr=dict(splines="true"))
2018-08-31 04:50:58 +02:00
docker_client = Client(os.environ.get("DOCKER_HOST", "unix:///var/run/docker.sock"))
def dump_json(obj):
print(json.dumps(obj, indent=4))
for c in docker_client.containers():
name = c['Names'][0][1:]
2018-08-31 04:50:58 +02:00
container_id = c['Id']
node_id = 'container_%s' % container_id
iface_labels = []
for net_name, net_info in c['NetworkSettings']['Networks'].items():
label_iface = "<%s> %s" % (net_info['EndpointID'], net_info['IPAddress'])
iface_labels.append(label_iface)
if verbose:
print('|'.join(iface_labels))
g.node(node_id,
shape='record',
label="{ %s | { %s } }" % (name, '|'.join(iface_labels)),
fillcolor='#ff9999',
style='filled'
)
2018-08-31 04:50:58 +02:00
for net in sorted(docker_client.networks(), key=lambda k: k["Name"]):
2018-08-31 04:50:58 +02:00
net_name = net['Name']
color = get_unique_color()
2018-08-31 04:50:58 +02:00
try:
gateway = net['IPAM']['Config'][0]['Gateway']
except (KeyError, IndexError):
2018-09-10 18:45:36 +02:00
# This network doesn't seem to be used, skip it
continue
2018-08-31 04:50:58 +02:00
2018-08-31 21:34:24 +02:00
internal = ""
2018-08-31 04:50:58 +02:00
try:
2018-08-31 15:31:36 +02:00
if net['Internal']:
2018-08-31 21:34:24 +02:00
internal = "| Internal "
2018-09-10 18:45:36 +02:00
except KeyError:
2018-08-31 21:34:24 +02:00
pass
isolated = ""
try:
if net["Options"]["com.docker.network.bridge.enable_icc"] == "false":
isolated = "| Containers isolated"
except KeyError:
pass
2018-08-31 04:50:58 +02:00
if verbose:
2018-08-31 15:31:36 +02:00
print("Network: %s %s gw:%s" % (net_name, internal, gateway))
2018-08-31 04:50:58 +02:00
net_node_id = "net_%s" % (net_name,)
2018-08-31 21:34:24 +02:00
label = "{<gw_iface> %s | %s %s%s}" % (gateway, net_name, internal, isolated)
2018-08-31 04:50:58 +02:00
g.node(net_node_id,
shape='record',
2018-08-31 15:31:36 +02:00
label=label,
fillcolor=color,
2018-08-31 15:31:36 +02:00
style='filled'
)
2018-08-31 04:50:58 +02:00
for container_id, container in sorted(net['Containers'].items()):
if verbose:
dump_json(container)
print(" * ", container['Name'], container['IPv4Address'], container['IPv6Address'])
container_node_id = 'container_%s' % container_id
container_iface_ref = "%s:%s" % (container_node_id, container['EndpointID'])
g.edge(container_iface_ref, net_node_id+":gw_iface", color=color)
2018-08-31 04:50:58 +02:00
print(g.source)
2018-08-31 04:50:58 +02:00
if file:
g.render(file)
2018-08-31 04:50:58 +02:00
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Generate docker network graph.")
parser.add_argument("-v", "--verbose", help="Verbose output", action="store_true")
parser.add_argument("-o", "--out", help="Write output to file", type=str)
args = parser.parse_args()
generate_graph(args.verbose, args.out)