diff --git a/CHANGELOG.md b/CHANGELOG.md index eedd40833..cda2699bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,28 @@ Percona Monitoring and Management (PMM) Server -unreleased 2016-06-24 +v1.0.2 unreleased 2016-07-21 -* Prometheus 0.20.0 -* Various updates for MongoDB dashboards -* Minor updates to the landing page +* Grafana 3.1.0. +* Prometheus 1.0.0. +* Set default metrics retention to 30 days. +* Eliminated port 9001. Now the container uses only one configurable port, 80 by default. +* Eliminated the need to specify ADDRESS variable when creating docker container. +* Added support to name instances using the new pmm-admin. +* Redesigned query profile table on Query Analytics App. +* Added sparkline charts to Query Analytics App. +* Various updates for MongoDB dashboards. v1.0.1 released 2016-06-09 -* Grafana 3.0.4 -* Prometheus 0.19.2 -* Added MongoDB dashboards -* Replaced prom-config-api with Consul 0.6.4 -* Eliminated most of the ports for PMM server container (now only two: 9001 and configurable 80) -* Added "Server Summary" with aggregated query metrics to QAN app -* MySQL dashboard updates, added "MySQL InnoDB Metrics Advanced" dashboard -* Added options to configure Prometheus memory and retention +* Grafana 3.0.4. +* Prometheus 0.19.2. +* Added MongoDB dashboards. +* Replaced prom-config-api with Consul 0.6.4. +* Eliminated most of the ports for PMM server container (now only two: 9001 and configurable 80). +* Added "Server Summary" with aggregated query metrics to QAN app. +* MySQL dashboard updates, added "MySQL InnoDB Metrics Advanced" dashboard. +* Added options to configure Prometheus memory and retention. v1.0.0 released 2016-04-17 -* First release +* First release. diff --git a/Dockerfile b/Dockerfile index e19e20604..1fdb45fad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:latest -EXPOSE 80 9001 +EXPOSE 80 WORKDIR /opt @@ -22,9 +22,9 @@ RUN apt-get -y update && apt-get install -y \ # Prometheus # # ########## # -ADD https://github.com/prometheus/prometheus/releases/download/0.20.0/prometheus-0.20.0.linux-amd64.tar.gz /opt/ +ADD https://github.com/prometheus/prometheus/releases/download/v1.0.0/prometheus-1.0.0.linux-amd64.tar.gz /opt/ RUN mkdir prometheus && \ - tar xfz prometheus-0.20.0.linux-amd64.tar.gz --strip-components=1 -C prometheus + tar xfz prometheus-1.0.0.linux-amd64.tar.gz --strip-components=1 -C prometheus COPY prometheus.yml /opt/prometheus/ # ####### # @@ -51,13 +51,13 @@ RUN chgrp grafana /etc/grafana/grafana.ini && \ # Percona Query Analytics # # ####################### # -ADD https://www.percona.com/downloads/TESTING/pmm/percona-qan-api-1.0.0-20160607.067b82c-x86_64.tar.gz \ - https://www.percona.com/downloads/TESTING/pmm/percona-qan-app-1.0.0-20160610.f450c8e.tar.gz \ +ADD https://www.percona.com/downloads/TESTING/pmm/percona-qan-api-1.0.0-20160706.9f5c394-x86_64.tar.gz \ + https://www.percona.com/downloads/TESTING/pmm/percona-qan-app-1.0.0-20160706.2df9671.tar.gz \ /opt/ RUN mkdir qan-api && \ - tar zxf percona-qan-api-1.0.0-20160607.067b82c-x86_64.tar.gz --strip-components=1 -C qan-api && \ + tar zxf percona-qan-api-1.0.0-20160706.9f5c394-x86_64.tar.gz --strip-components=1 -C qan-api && \ mkdir qan-app && \ - tar zxf percona-qan-app-1.0.0-20160610.f450c8e.tar.gz --strip-components=1 -C qan-app + tar zxf percona-qan-app-1.0.0-20160706.2df9671.tar.gz --strip-components=1 -C qan-app COPY install-qan.sh /opt RUN /opt/install-qan.sh diff --git a/VERSION b/VERSION index 7dea76edb..6d7de6e6a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.1 +1.0.2 diff --git a/docker-compose.yml b/docker-compose.yml index 1b859583b..53db6bc4a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,12 +16,9 @@ services: container_name: pmm-server image: percona/pmm-server ports: - - "9001:9001" - "80:80" volumes_from: - pmm-data - ### EDIT WITH YOUR IP ### - environment: - - ADDRESS=192.168.56.107 - #- METRICS_RETENTION=192h - #- METRICS_MEMORY=262144 +# environment: +# - METRICS_RETENTION=720h +# - METRICS_MEMORY=262144 diff --git a/install-qan.sh b/install-qan.sh index 2863c6a8d..22ca00fe2 100755 --- a/install-qan.sh +++ b/install-qan.sh @@ -5,6 +5,8 @@ set -eu service mysql start # START=no SYSINT=no because Supervisor starts and manages these processes. - cd /opt/qan-api START="no" SYSINT="no" ./install + +# Define /qan-api path for QAN app +sed -i "s/':9001',/':' + window.location.port + '\/qan-api',/" /opt/qan-app/client/app/app.js diff --git a/landing-page/index.html b/landing-page/index.html index 5b4f163df..0ebe0c8a8 100644 --- a/landing-page/index.html +++ b/landing-page/index.html @@ -46,7 +46,7 @@
Percona Monitoring and Management (PMM) is a free and open-source solution for managing and monitoring MySQL performance, and provides thorough time-based analysis of MySQL performance to ensure that your data works as efficiently as possible.
+Percona Monitoring and Management (PMM) is a free and open-source solution for managing and monitoring performance on MySQL and MongoDB, and provides time-based analysis of performance to ensure that your data works as efficiently as possible.