Add ports with multiple nodes attached report

This commit is contained in:
Eric A. Miller
2013-11-05 22:34:10 -05:00
parent 6d55dcd923
commit 15fb4030a6
5 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
[% USE CSV -%]
[% CSV.dump([ 'Device' 'Port' 'Port Description' 'Node Count' ]) %]
[% FOREACH row IN results %]
[% mylist = [] %]
[% mylist.push(row.dns || row.name || row.ip) %]
[% mylist.push(row.port) %]
[% mylist.push(row.description) %]
[% mylist.push(row.mac_count) %]
[% CSV.dump(mylist) %]
[% END %]