-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display a floorplan of all racks in a site #114
Comments
I've already have this setup in a customeware application I wrote. I make use of pgSQL's point coordinates for storing the location of racks, CRV's, UPS's on a grid and then displaying racks, birds eye with:
its all realtime with AJAX and SNMP Get ahold me in the IRC channel if anyone wants to discuss this further as it's something I've thought about adding to netbox since I saw the reddit thread. |
A room / bird's eye view makes sense. We may need to first address how to relate rooms, private cages, or floors in the same site. You may want to only take a birds eye view by these sub-units/groups. |
Yes, you'd ideally want to limit the display to each "rack group" - which for us is a single containment pod but could be anything. Realistically you are only limited to screen real-estate for what you want to show however there are other considerations if you want live data: -will the data come live or from a stored system that is polling (like rrdtool) -if its coming live, how many devices are you calling live and what impact that may have on your network My implementation does everything live via ajax (we are relatively small) but at scale that simply doesn't work. My thought for my next version was to use cacti to collect all the data and pull it to the interface with command line calls to rra's, however that means adding devices in two places and also doing all graph templating with cacti and a slew of other things. It certainly would be an advanced implementation to add live/delayed data to the overview but not impossible. Simply displaying the visual layout though is real easy, involving some CSS and placement decisions based on grid. Each rackUnit (yeah bad name) in my pgsql table (which consists of 'types' e.g rack, gap, ups, battery, bypass, transformer, cooler, etc) has a "coord" field that is (x,y) (field type is 0,0 is top left -> 0,n ...this is per rackGroup. Based on the type and facility ID for those items I have CSS classes setup to handle the display for that item. |
I thought the idea of netbox is not to have live or polled data but to be an authoritative source of truth curated by a human. I would really like to see this feature but it need only be the room view exactly as @ryanmerolle said. Then we could browse down from the org level to each data centre space or room and then down to the rack level. |
One of the tenets of netbox is to document things as they exist in the real world. So auto-polling interfaces, assuming connections, etc is not done. The temperature of a rack, of the runtime of a UPS battery string, are real world items and critical to DCIM. These are also things that change external to human interaction unlike adding a physical server, wiring a switch, etc so the only way to provide that data (if netbox wanted) would be the aforementioned. My previous reply was simply shared to provide insight as to how I accomplished my needs for our software. |
Awesome, searching for "map" instead of "overview" was to easy to find this issue, sorry. 😄 |
As well as "bird eye view" I'd also like a front and back view of all the racks in a site or rack group. At the moment you can only get this one rack at a time. |
@bellwood, have you made any further progress on this? Any work you would like to share? I'm looking at implementing this in our setup in the coming week. |
Yeah I'd really like something like this as well - Im somewhat handy with front end web dev stuff as well so I am more than happy to help! |
@jeremystretch: Question: Is this extension really implemented in Netbox (Core) or should it appear as an extension ? We would be happy if the floorplans would actually come. |
@DanSheps thanks for your answer. |
Hi @jeremystretch: First of all.. what is the exactly need of a "floorplan" ? How to build DataCenterGrid ? But first .. on which point we could build our DataCenterGrid ? |
So, one of the major problems I think with this is that Sites & Rack Groups mean very different things to different implementations. For my implementation for example, we use sites to be various campuses and Rack Groups to denote the floor and building. Then the rack Facility ID tells us where the physical rack is located, such as 145.36 meaning room 1, row 45, rack 36. It's more then likely that we will need entirely new fields to track location, and ALSO will need to track Hot/Cold aisles since that isn't always standard either, and then there are POD based cooling systems as well as more I'm sure I'm not aware of...implementing this probably represents some fairly major changes. Not necessarily bad ones, but ones that should definitely be thought through carefully. |
Please do not ask for updates to feature requests. They will be released when they are released. |
This is one of our oldest feature requests, and to be honest I just don't see it ever becoming a priority. I'm going to close this out as a core feature request, however I do think it would make an excellent plugin. Hopefully someone in the community will take interest in building it. |
Ability to drag and drop existing racks within a site to create their physical topology. Bonus points for displaying how many free U's each rack has.
The text was updated successfully, but these errors were encountered: