Skip to content

Commit

Permalink
set VERSION from 0.2.0 to 0.1.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
justb4 committed May 4, 2017
1 parent e35c5ec commit 764d5ce
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion GeoHealthCheck/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
# OTHER DEALINGS IN THE SOFTWARE.
#
# =================================================================
__version__ = '0.2.0'
__version__ = '0.1.0rc1'
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0-plugindevs82
0.1.0rc1
9 changes: 5 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GeoHealthCheck
Overview
--------

GeoHealthCheck is a Python application to support monitoring OGC services uptime,
GeoHealthCheck (GHC) is a Python application to support monitoring OGC services uptime,
availability and Quality of Service (QoS).

It can be used to monitor overall health of OGC services like WMS, WFS, WCS, WMTS, SOS, CSW
Expand All @@ -27,12 +27,13 @@ Links

- website: http://geohealthcheck.org
- GitHub: https://github.com/geopython/geohealthcheck
- Demo: http://demo.geohealthcheck.org (official demo)
- DevDemo: http://dev.geohealthcheck.org (latest development demo)
- Demo: http://demo.geohealthcheck.org (official demo, master branch)
- DevDemo: http://dev.geohealthcheck.org (latest development demo, dev branch)
- Presentation: http://geohealthcheck.org/presentation
- Gitter Chat: https://gitter.im/geopython/GeoHealthCheck

This is document version |release| generated on |today|.
This document applies to GHC version |release| and was generated on |today|.
The latest version is always available at http://docs.geohealthcheck.org.

Contents:

Expand Down
11 changes: 8 additions & 3 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Install
- Download GeoHealthCheck (releases can be found at
https://github.com/geopython/GeoHealthCheck/releases)

.. _upgrade:

Upgrade
-------

Expand All @@ -81,9 +83,12 @@ An existing GHC database installation can be upgraded with:
Notes:

* **Always backup your database first!!**
* make sure Flask-Migrate is installed (see requirements.txt), else: `pip install Flask-Migrate==2.0.3`
* upgrading should be "smart": only performed when required
* when upgrading from pre-v0.2.0 (first version with Plugins) adapt your `config_site.py` to Plugin settings from `config_main.py`
* make sure Flask-Migrate is installed (see requirements.txt), else: `pip install Flask-Migrate==2.0.3`, but best is to run `paver setup` also for other dependencies
* upgrading is "smart": you can always run `paver upgrade`, it has no effect when DB already uptodate
* when upgrading from earlier versions without Plugin-support

- adapt your `config_site.py` to Plugin settings from `config_main.py`
- assign `Probes` and `Checks` to each `Resource` via the UI


Running
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Two Plugin types exist that can be extended: the `Probe` and `Check` class.
Concepts
--------

Starting with GHC v0.2.0 healthchecks are exclusively performed by Plugins. The basic concept
GHC versions after May 1, 2017 perform healthchecks exclusively via Plugins (see :ref:`upgrade` how to upgrade from older versions). The basic concept
is simple: each `Resource` (typically an OWS endpoint) has one or more `Probes`. During a
GHC run (via `cron` or manually), GHC sequentually invokes the `Probes` for each `Resource`
to determine the health (QoS) of the `Resource`.
Expand Down

0 comments on commit 764d5ce

Please sign in to comment.