d500651367
In sphinx, we have a :cgit_file: directive that makes links to files. Thing is - we're not using cgit anymore. So just rename it to git_file. Change-Id: I80aca5fb3cc84281e29843944fea33e6f4d9fe6f
42 lines
1.3 KiB
ReStructuredText
42 lines
1.3 KiB
ReStructuredText
:title: openstack-health
|
|
|
|
.. _openstack-health:
|
|
|
|
OpenStack-Health
|
|
################
|
|
|
|
At a Glance
|
|
===========
|
|
|
|
:Hosts:
|
|
* API Server: http://health.openstack.org
|
|
* Frontend: http://status.openstack.org/openstack-health
|
|
:Puppet:
|
|
* https://opendev.org/opendev/puppet-openstack_health/tree/
|
|
* :git_file:`modules/openstack_project/manifests/openstack_health_api.pp`
|
|
* :git_file:`modules/openstack_project/manifests/status.pp`
|
|
:Configuration:
|
|
* :git_file:`modules/openstack_project/files/git/cgitrc`
|
|
:Projects:
|
|
* https://opendev.org/openstack/openstack-health
|
|
|
|
Overview
|
|
========
|
|
|
|
The OpenStack Health dashboard provides a view of the status of all the tests
|
|
running in our continuous integration infrastructure that we collect results
|
|
data in subunit2sql for. It is composed of 2 pieces:
|
|
|
|
#. The REST API that provides the data used for the dashboard visualizations
|
|
#. The JS frontend which is used to visualize the data returned by the REST
|
|
API
|
|
|
|
The REST API is deployed on it's own server. It is written in python using flask
|
|
and is deployed using mod_wsgi under apache.
|
|
|
|
The frontend component is deployed on status.openstack.org.
|
|
|
|
Both components are continually deployed from the project repo, so as soon
|
|
as a commit lands in the openstack-health repo it will be applied to the
|
|
deployment.
|