*** yujunz has joined #openstack-vitrage | 00:52 | |
*** yujunz is now known as yujunz[away] | 00:52 | |
*** yujunz[away] is now known as yujunz | 00:56 | |
*** yujunz is now known as yujunz[away] | 00:57 | |
*** yujunz[away] is now known as yujunz | 00:58 | |
*** yujunz is now known as yujunz[away] | 00:59 | |
*** tovin07 has joined #openstack-vitrage | 01:02 | |
*** yujunz[away] has quit IRC | 01:03 | |
*** tovin07 has quit IRC | 01:06 | |
*** tovin07 has joined #openstack-vitrage | 01:08 | |
*** tovin07 has quit IRC | 01:08 | |
*** tovin07 has joined #openstack-vitrage | 01:09 | |
*** tovin07 has quit IRC | 01:09 | |
*** tovin07 has joined #openstack-vitrage | 01:10 | |
*** tovin07 has quit IRC | 01:11 | |
*** tovin07 has joined #openstack-vitrage | 01:12 | |
*** hieulq has joined #openstack-vitrage | 02:53 | |
*** hieulq has quit IRC | 03:04 | |
*** hieulq has joined #openstack-vitrage | 03:18 | |
*** hieulq has quit IRC | 03:38 | |
*** ifat_afek has joined #openstack-vitrage | 05:22 | |
ifat_afek | pava: hi, are you there? | 05:24 |
---|---|---|
openstackgerrit | Alexey Weyl proposed openstack/vitrage: Multi tenancy for topology, alarms and rca apis. https://review.openstack.org/377413 | 05:52 |
*** ifat_afek has quit IRC | 05:55 | |
*** ifat_afek has joined #openstack-vitrage | 06:04 | |
openstackgerrit | Alexey Weyl proposed openstack/vitrage: Multi tenancy for topology, alarms and rca apis. https://review.openstack.org/377413 | 06:50 |
openstackgerrit | Alexey Weyl proposed openstack/vitrage: Multi tenancy for topology, alarms and rca apis. https://review.openstack.org/377413 | 07:06 |
pava | ifat_afek: hi now I am | 07:35 |
ifat_afek | hi pava :-) | 07:35 |
pava | hi :) | 07:35 |
pava | I have deployed with fuel | 07:35 |
pava | it's an opnfv environment | 07:35 |
ifat_afek | and how did you try to install vitrage on top of this environment? | 07:38 |
pava | well at first I just installed vitrage-dashboard from the instructions here | 07:39 |
pava | https://github.com/openstack/vitrage-dashboard | 07:39 |
pava | then I installed vitrage with pip intsall | 07:40 |
openstackgerrit | Alexey Weyl proposed openstack/vitrage: Multi tenancy for topology, alarms and rca apis. https://review.openstack.org/377413 | 07:40 |
pava | https://github.com/openstack/vitrage.git | 07:41 |
pava | I installed vitrage-dasboard without with_venv>sh script because I instlled on my deployed environment | 07:42 |
ifat_afek | let’s leave vitrage-dahsboard for a moment, and focus on vitrage. it seems like vitrage doesn’t work, and vitrage-dashboard depends on it | 07:43 |
ifat_afek | can you check if python-vitrageclient is installed? | 07:44 |
pava | ok | 07:45 |
pava | yes the packet is there http://hastebin.com/itabaxehed.rb | 07:46 |
ifat_afek | there are a few steps that should be performed after pip install, and they are not done automatically as in devstack installation. we have an rpm to handle it (it is not approved yet), so if you know how to read the spec, or how to build it yourself, you can do it. if not, I’ll send you a list of commands | 07:49 |
*** eyalb has joined #openstack-vitrage | 07:49 | |
pava | I coult try both ? | 07:50 |
ifat_afek | whatever is easier for you | 07:50 |
pava | ok I can try the list of commands first at least | 07:50 |
ifat_afek | in addition, there is a need to define keystone endpoint for vitrage. do you know how to do that? | 07:51 |
eyalb | the link for the vitrage spec is here https://github.com/ALU-CloudBand/vitrage | 07:52 |
pava | No. But I will look for it. If it's very easy you can tel me or give me few tips ? | 07:52 |
eyalb | you need to use the keystone CLI | 07:52 |
eyalb | you have the commands to create endpoints | 07:53 |
eyalb | but to use the cli you need to provide it with the credentials as a environment variables | 07:53 |
pava | Yes I have the credentials | 07:54 |
pava | thanks | 07:54 |
eyalb | the url for vitrage is http://[host]:8999 | 07:55 |
eyalb | you should also run the vitrage-api , vitrage-graph, vitrage-notifier | 07:56 |
eyalb | if you look at the spec file you will see that you can generate a vitrage.conf file | 07:56 |
openstackgerrit | Merged openstack/vitrage: Maintain releasenotes for vitrage https://review.openstack.org/382425 | 07:56 |
eyalb | and there fill all the credentials | 07:56 |
pava | I see | 07:57 |
pava | thanks for the help both of you | 07:57 |
eyalb | to create endpoint use the command "openstack endpoint create" | 07:58 |
eyalb | you also need to create a service using the command "openstack service create" | 08:00 |
pava | I see. I do this after the spec thing right ? | 08:01 |
eyalb | the name of the service shoud be vitrage the type rca and the description "Root Cause Analysis Service" | 08:02 |
pava | ok | 08:03 |
eyalb | yes | 08:03 |
*** tovin07 has quit IRC | 08:03 | |
*** tovin07 has joined #openstack-vitrage | 08:03 | |
pava | can you also send the list of commands for the rpm thing ? | 08:04 |
eyalb | what I sent you is a spec file for building and rpm, you can build the rpm your self if you know how or you can look at spec file and see how it configures vitrage | 08:10 |
pava | ok thnks | 08:11 |
eyalb | these are the command to create endpoints | 08:17 |
eyalb | openstack service create rca --name vitrage '--description=Root Cause Analysis Service' | 08:17 |
eyalb | openstack endpoint create rca --publicurl http://<host>:8999 --adminurl http://<host>:8999 --internalurl http://<host>:8999 --region <region-id> | 08:17 |
eyalb | look at https://github.com/ALU-CloudBand/vitrage/blob/master/openstack-vitrage.spec | 08:19 |
eyalb | line 142 | 08:19 |
eyalb | you can see that it generates a conf file | 08:19 |
eyalb | builds the project | 08:19 |
eyalb | and then copies and creates some direcotries | 08:19 |
pava | ok so that's what I have to do also | 08:20 |
eyalb | yes | 08:22 |
eyalb | if you have more questions then ask me | 08:23 |
pava | ok thanks | 08:24 |
*** ifat_afek has quit IRC | 08:57 | |
*** eyalb has quit IRC | 09:02 | |
*** ebarilan has joined #openstack-vitrage | 09:03 | |
*** ebarilan has left #openstack-vitrage | 09:03 | |
*** idan_hefetz has joined #openstack-vitrage | 09:05 | |
*** eyalb has joined #openstack-vitrage | 09:05 | |
*** tovin07 has quit IRC | 09:21 | |
*** tovin07 has joined #openstack-vitrage | 09:22 | |
*** eyalb has quit IRC | 09:39 | |
*** eyalb has joined #openstack-vitrage | 09:40 | |
*** ifat_afek has joined #openstack-vitrage | 09:45 | |
*** ifat_afek has quit IRC | 10:18 | |
*** tovin07 has quit IRC | 10:18 | |
*** ifat_afek has joined #openstack-vitrage | 10:24 | |
*** ifat_afek has quit IRC | 10:57 | |
*** ifat_afek has joined #openstack-vitrage | 11:05 | |
*** ifat_afek has quit IRC | 11:24 | |
*** ifat_afek has joined #openstack-vitrage | 11:27 | |
*** ifat_afek has quit IRC | 11:30 | |
*** ifat_afek has joined #openstack-vitrage | 11:32 | |
*** ifat_afek has quit IRC | 11:35 | |
*** ifat_afek has joined #openstack-vitrage | 11:55 | |
*** ifat_afek has quit IRC | 11:58 | |
*** ifat_afek has joined #openstack-vitrage | 12:08 | |
pava | eyalb: <region-id> is like RegionOne for a single region deployment ? | 12:08 |
eyalb | yes | 12:15 |
*** ifat_afek has quit IRC | 12:22 | |
*** yujunz has joined #openstack-vitrage | 12:29 | |
*** yujunz has quit IRC | 12:29 | |
*** yujunz-zte has joined #openstack-vitrage | 12:29 | |
openstackgerrit | Noam Bloom proposed openstack/python-vitrageclient: all_tenants flag default value to false https://review.openstack.org/382909 | 12:34 |
openstackgerrit | Merged openstack/python-vitrageclient: all_tenants flag default value to false https://review.openstack.org/382909 | 12:42 |
*** yujunz-zte has quit IRC | 12:51 | |
*** yujunz has joined #openstack-vitrage | 13:05 | |
*** eyalb has quit IRC | 14:28 | |
*** yujunz is now known as yujunz[away] | 14:44 | |
openstackgerrit | Merged openstack/vitrage-dashboard: sunburst improvements https://review.openstack.org/383003 | 14:57 |
*** yujunz[away] is now known as yujunz | 14:59 | |
*** yujunz is now known as yujunz[away] | 14:59 | |
*** yujunz[away] has quit IRC | 15:02 | |
*** idan_hefetz has quit IRC | 15:14 | |
pava | Hi eyalb I tried to start vitrage-graph it fails with AMQP server on 127.0.0.1:5672 is unreachable: | 15:25 |
pava | but I run rabbitmq on port 15672 ? is there any way to configure vitrage to connect to that port ? | 15:26 |
pava | I couldn't find anythin in vitrage.conf | 15:27 |
openstackgerrit | Noam Bloom proposed openstack/vitrage-dashboard: Added templates list view to vitrage dashboard https://review.openstack.org/383075 | 16:09 |
*** pava has quit IRC | 16:17 | |
*** pava has joined #openstack-vitrage | 16:23 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!