From 50c19eb1d5aa815af6d67bb58ff90fcc1e548036 Mon Sep 17 00:00:00 2001 From: Felix Richter Date: Wed, 11 May 2011 12:38:40 +0200 Subject: added tinc syslog parser and graph generator parse.py: parses syslog input given via stdin, writes graphviz graph to stdout sanitize.sh:helper script which prepares syslog for the parse script,pipes output of parse.sh into graphviz --- retiolum/hosts/.scripts/parse.py | 53 +++++++++++++++++++++++++++++++++++++ retiolum/hosts/.scripts/sanitize.sh | 2 ++ 2 files changed, 55 insertions(+) create mode 100755 retiolum/hosts/.scripts/parse.py create mode 100755 retiolum/hosts/.scripts/sanitize.sh (limited to 'retiolum/hosts') diff --git a/retiolum/hosts/.scripts/parse.py b/retiolum/hosts/.scripts/parse.py new file mode 100755 index 00000000..a7ca7884 --- /dev/null +++ b/retiolum/hosts/.scripts/parse.py @@ -0,0 +1,53 @@ +#!/usr/bin/python2 + +import sys + +def write_digraph(nodes): + print ('digraph retiolum {') + print (' node[shape=box,style=filled,fillcolor=grey]') + for k,v in nodes.iteritems(): + write_node(k,v) + print ('}') +def write_node(k,v): + node = " "+k+"[label=\"" + node += k+"\\l" + node += "external:"+v['external-ip']+":"+v['external-port']+"\\l" + node += "internal:"+v['internal-ip']+"\\l\"" + if v['external-ip'] == "MYSELF": + sys.stderr.write("lolwut") + node += ",fillcolor=steelblue1" + node += "]" + print (node) + for con in v.get('to',[]): + print " "+k+ "->" +con['name'] + "[weight="+str(10/float(con['weight']))+"]" +nodes={} +edges={} + +for line in sys.stdin: + line = line.replace('\n','') + if line == 'Nodes:': + nodes={} + for line in sys.stdin: + if line == 'End of nodes.\n': + break + l = line.replace('\n','').split() #TODO unhack me + nodes[l[0]]= { 'external-ip': l[2], 'external-port' : l[4] } + if line == 'Subnet list:': + for line in sys.stdin: + if line == 'End of subnet list.\n': + break + l = line.replace('\n','').split() + nodes[l[2]]['internal-ip'] = l[0].split('#')[0] + if line == 'Edges:': + edges = {} + for line in sys.stdin: + if line == 'End of edges.\n': + break + l = line.replace('\n','').split() + + if not nodes[l[0]].has_key('to') : + nodes[l[0]]['to'] = [] + nodes[l[0]]['to'].append( + {'name':l[2],'addr':l[4],'port':l[6],'weight' : l[10] }) + +write_digraph(nodes) diff --git a/retiolum/hosts/.scripts/sanitize.sh b/retiolum/hosts/.scripts/sanitize.sh new file mode 100755 index 00000000..92a7b6ee --- /dev/null +++ b/retiolum/hosts/.scripts/sanitize.sh @@ -0,0 +1,2 @@ +sudo sed -n '/tinc.retiolum/{s/.*tinc.retiolum\[[0-9]*\]: //gp}' /var/log/everything.log | ./parse.py | tee here.dot | dot | gvcolor | dot -Tpng -O +mirage noname.dot.png -- cgit v1.2.3