aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docker/influxdb/Dockerfile5
-rw-r--r--docker/influxdb/influxdb.conf33
-rw-r--r--docs/release/configguide/postinstall.rst25
-rw-r--r--docs/release/release-notes/release-notes.rst6
4 files changed, 66 insertions, 3 deletions
diff --git a/docker/influxdb/Dockerfile b/docker/influxdb/Dockerfile
new file mode 100644
index 00000000..83d6ad55
--- /dev/null
+++ b/docker/influxdb/Dockerfile
@@ -0,0 +1,5 @@
+FROM influxdb:1.3.7
+
+RUN wget https://raw.githubusercontent.com/collectd/collectd/collectd-5.8/src/types.db -O /types.db
+COPY ./influxdb.conf /etc/influxdb/influxdb.conf
+
diff --git a/docker/influxdb/influxdb.conf b/docker/influxdb/influxdb.conf
new file mode 100644
index 00000000..af59499b
--- /dev/null
+++ b/docker/influxdb/influxdb.conf
@@ -0,0 +1,33 @@
+
+[meta]
+ dir = "/var/lib/influxdb/meta"
+
+[data]
+ dir = "/var/lib/influxdb/data"
+ wal-dir = "/var/lib/influxdb/wal"
+
+[coordinator]
+
+[retention]
+
+[shard-precreation]
+
+
+[monitor]
+
+
+[http]
+
+[[graphite]]
+
+[[collectd]]
+enabled = true
+typesdb = "/types.db"
+[[opentsdb]]
+
+[[udp]]
+
+[continuous_queries]
+
+
+
diff --git a/docs/release/configguide/postinstall.rst b/docs/release/configguide/postinstall.rst
index 7ec047da..602a8d5c 100644
--- a/docs/release/configguide/postinstall.rst
+++ b/docs/release/configguide/postinstall.rst
@@ -25,6 +25,31 @@ Platform components validation - Apex
-------------------------------------
The following steps describe how to perform a simple "manual" testing of the Barometer components:
+On the controller:
+
+You will need update the archive policy rule for gnocchi via the command line.
+The default is low, which means that you only get a metric every
+5 minutes. To do this:
+
+.. code:: bash
+
+ $ openstack metric archive-policy rule delete default
+ $ openstack metric archive-policy-rule create -a bool -m '*' default
+
+Using the ``bool`` archive policy reduces the number of aggregation methods run
+to one (last), and it keeps all metrics at a 1 second interval.
+In order to query this you need to explicitly choose an aggregation method to
+display (by default, ``measures show`` uses mean). You may have to update the
+command for checking the metrics, this is the CLI command:
+
+.. code:: bash
+
+ $ watch –n2 –d openstack metric measures show --aggregation last <metric_id>
+
+More on testing and displaying metrics is shown below.
+
+On the compute:
+
1. Connect to any compute node and ensure that the collectd service is running. The log file
``collectd.log`` should contain no errors and should indicate that each plugin was successfully
loaded. For example, from the Jump Host:
diff --git a/docs/release/release-notes/release-notes.rst b/docs/release/release-notes/release-notes.rst
index 80fee5b1..75a2e391 100644
--- a/docs/release/release-notes/release-notes.rst
+++ b/docs/release/release-notes/release-notes.rst
@@ -53,13 +53,13 @@ Release Data
| **Project** | Euphrates/barometer/barometer@opnfv |
| | |
+--------------------------------------+--------------------------------------+
-| **Repo/commit-ID** | barometer/ |
+| **Repo/commit-ID** | barometer/opnfv-5.1.0 |
| | |
+--------------------------------------+--------------------------------------+
-| **Release designation** | Euphrates 5.0 |
+| **Release designation** | Euphrates 5.1.0 |
| | |
+--------------------------------------+--------------------------------------+
-| **Release date** | October 20th, 2017 |
+| **Release date** | December 15th, 2017 |
| | |
+--------------------------------------+--------------------------------------+
| **Purpose of the delivery** | Official OPNFV release |