From 3fbedffbee858b3d29607ddfa5eb3186ac4191cd Mon Sep 17 00:00:00 2001
From: Quentin Duchemin <quentinduchemin@tuta.io>
Date: Mon, 1 Jun 2020 23:10:29 +0200
Subject: [PATCH] [PicaMetrics] Disable statistics sent to InfluxDB

---
 pica-metrics-bot/README.md          | 6 ++++++
 pica-metrics-bot/docker-compose.yml | 1 +
 2 files changed, 7 insertions(+)

diff --git a/pica-metrics-bot/README.md b/pica-metrics-bot/README.md
index b17626f5..d55dd872 100644
--- a/pica-metrics-bot/README.md
+++ b/pica-metrics-bot/README.md
@@ -19,3 +19,9 @@ L'utilisateur InfluxDB qui doit être utilisé dans Picasoft Metrics Bot est cel
 ## Mise à jour
 
 Le projet Picasoft Metrics Bot n'a pas de numéro de version : pour reconstruire l'image avec les dernières modifications, il suffira de changer le tag dans le fichier Docker Compose et de lancer manuellement la construction au niveau du Pipeline du commit.
+
+Lancer la commande suivante pour mettre à jour le submodule au dernier commit du dépôt contenant le code :
+
+```bash
+git submodule update --recursive --remote
+```
diff --git a/pica-metrics-bot/docker-compose.yml b/pica-metrics-bot/docker-compose.yml
index 3fa8f08b..a91b4575 100644
--- a/pica-metrics-bot/docker-compose.yml
+++ b/pica-metrics-bot/docker-compose.yml
@@ -32,6 +32,7 @@ services:
         - INFLUXDB_DATA_MAX_VALUES_PER_TAG=0
         # See https://docs.influxdata.com/influxdb/v1.7/administration/upgrading/#switch-between-tsm-and-tsi-indexes
         - INFLUXDB_DATA_INDEX_VERSION=tsi1
+        - INFLUXDB_REPORTING_DISABLED=true
       env_file: ./secrets/influxdb.secrets
       labels:
         traefik.frontend.rule: "Host:influxdb.picasoft.net"
-- 
GitLab