Re: [Openstack] Visualize network topology

2014-03-12 Thread Shital Patil
Thanks a lot that really is helping me On Wed, Mar 12, 2014 at 10:35 PM, Toshiyuki Hayashi wrote: > Hi, > > Horizon's topology view calls several neutron APIs, then gather the > information as JSON. > > https://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/project/netwo

Re: [Openstack] Visualize network topology

2014-03-12 Thread Toshiyuki Hayashi
Hi, Horizon's topology view calls several neutron APIs, then gather the information as JSON. https://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/project/network_topology/views.py#L95 I hope this information helps you. On Wed, Mar 12, 2014 at 1:17 AM, Shital Patil wro

Re: [Openstack] Visualize network topology

2014-03-12 Thread Mark Vlcek (mavlcek)
Shital Patil mailto:shital.pa...@gslab.com>> Date: Wednesday, March 12, 2014 at 1:17 AM To: sylecn mailto:syl...@gmail.com>> Cc: "mailto:openstack@lists.openstack.org>>" mailto:openstack@lists.openstack.org>> Subject: Re: [Openstack] Visualize network topology Hi,

Re: [Openstack] Visualize network topology

2014-03-12 Thread Shital Patil
Hi, Thanks for reply. Could you please which REST HTTP calls I may need from neutron API to get information about existing topology as horizon does ? On Wed, Mar 12, 2014 at 1:17 PM, sylecn wrote: > Hi, > > Just FYI, horizon already provides the visualization part. It's in > "Network Topology"

Re: [Openstack] Visualize network topology

2014-03-12 Thread sylecn
Hi, Just FYI, horizon already provides the visualization part. It's in "Network Topology" tab. Creating a network topology by drag and drop will be more challenging since neutron can fail in varies ways, especially when you want to support many different topologies in one cluster. Neutron api is

Re: [Openstack] Visualize network topology

2014-03-12 Thread Aryeh Friedman
1. You can do this in grizzly (but as far I know not havana) 2. No idea how to do this On Wed, Mar 12, 2014 at 3:16 AM, Shital Patil wrote: > Hi, > I want to develop drag and drop tool for creating and visualizing network > topology in openstack . I want to do it preferably in java. > > 1-How ca