Vitrage UI Dashboard
805d94e985
This repo is now testing only with Python 3, so let's make a few cleanups: - Remove python 2.7 stanza from setup.py - Add requires on python >= 3.6 to setup.cfg so that pypi and pip know about the requirement - Remove obsolete sections from setup.cfg - Update classifiers - Update requirements, no need for python_version anymore - Cleanup */source/conf.py to remove now obsolete content. - Use newer openstackdocstheme, reno, Sphinx, hacking versions for python3 - Add pytest as requirement, horizon does not provide this anymore and the tests here call horizon files that need it. Change-Id: I5983a19cadb210d55c30107fb963cfeaae0f1ee9 |
||
---|---|---|
devstack | ||
doc | ||
releasenotes | ||
tools | ||
vitrage_dashboard | ||
.coveragerc | ||
.gitignore | ||
.gitreview | ||
.jshintrc | ||
.mailmap | ||
.testr.conf | ||
.zuul.yaml | ||
babel.cfg | ||
bindep.txt | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
karma.conf.js | ||
LICENSE | ||
manage.py | ||
MANIFEST.in | ||
package.json | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
test-shim.js | ||
tox.ini |
Vitrage Dashboard
Vitrage is the Openstack RCA (Root Cause Analysis) Engine for organizing, analyzing and expanding OpenStack alarms & events, yielding insights regarding the root cause of problems and deducing the existence of problems before they are directly detected.
Vitrage Dashboard is an extension for OpenStack Dashboard that provides a UI for Vitrage.
Project Resources
How to use this package
With Devstack
Add the following to your Devstack local.conf file
enable_plugin vitrage-dashboard https://opendev.org/openstack/vitrage-dashboard
With Horizon
:
git clone https://github.com/openstack/horizon.git
git clone https://github.com/openstack/vitrage-dashboard.git
git clone https://github.com/openstack/python-vitrageclient.git
cd ../horizon
./run_tests.sh -f --docs
cp ./openstack_dashboard/local/local_settings.py.example ./openstack_dashboard/local/local_settings.py
pushd ../vitrage-dashboard
../horizon/tools/with_venv.sh pip install -e.
cp -a vitrage_dashboard/enabled/* ../horizon/openstack_dashboard/enabled/
popd
cd python-vitrageclient
../horizon/tools/with_venv.sh pip install -e.