Loading 400 graphs at once on a single page (via tree view) is very inefficient. List view/Preview are both nice, however the tree hierarchy given by Tree View is what I am looking for.
Right now, the tree hierarchy I have is as follows:
Code: Select all
+ Network (Header)
| \ -- + Switches (Header)
| \ ---- Switch (Host + Data Query Index)
\ -- + Routers (Header)
| \ ---- Router (Host + Data Query Index)
\ ---- Router (Host + Data Query Index)
Code: Select all
+ Network (Header)
\ -- + Switches (Header)
\ ---- + Switch1 (Header)
| \ ------ + Port1 (Header)
| | \ -------- In/Out bytes + error/discards (Graph Template)
| \ ------ + Port 2 (Header)
| \ -------- In/Out bytes + error/discards (Graph Template)
\ ---- + Switch2 (Header)
Does anyone have any suggestions as to how I can get this type of Tree View in an easy to implement/manage manner? If you need any further information, please feel free to reply. Thanks a ton!