diff options
author | 2024-12-05 08:49:05 +0000 | |
---|---|---|
committer | 2024-12-05 08:49:05 +0000 | |
commit | cd6fc6bf8fb1d28d741199c07b7dd6ecaac6d6a5 (patch) | |
tree | 7282fd10ced2efedb4837cc63ab61dc209d6fbf3 /docker-compose/README.md | |
parent | b6cb094f95fb136a69a019f396965c6f7ee6e23a (diff) | |
parent | 9d14873af2c4f0ca2221b1be3291c039a2e1ac6e (diff) |
Merge "Add persistent storage to prometheus"
Diffstat (limited to 'docker-compose/README.md')
-rw-r--r-- | docker-compose/README.md | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/docker-compose/README.md b/docker-compose/README.md index de1fbe296c..ea5a2a7610 100644 --- a/docker-compose/README.md +++ b/docker-compose/README.md @@ -1,7 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2020 Pantheon.tech - Modifications Copyright (C) 2020-2021 Nordix Foundation. + Modifications Copyright (C) 2020-2024 Nordix Foundation. Modifications Copyright (C) 2021 Bell Canada. Modifications Copyright (C) 2022 TechMahindra Ltd. ================================================================================ @@ -67,6 +67,34 @@ or VERSION=<version> DB_USERNAME=cps DB_PASSWORD=cps docker-compose up -d ``` +## Running Docker containers with profile: monitoring + +Run docker-compose with profile, monitoring, then it will start monitoring services: +* prometheus +* grafana +* kafka-ui + +```bash +docker-compose --profile monitoring up -d +``` + +### prometheus service +It collects and stores metrics as time series data, recording information with a timestamp. + +The environment variable, PROMETHEUS_RETENTION_TIME, is used to set the retention time for the metrics +in the prometheus database. The default value is 15d, but can be changed to any value. + +To be able to use the historical data, the prometheus container should not be removed. +Instead, it can be stopped and started using the following commands: + +```bash +docker-compose start prometheus +``` + +```bash +docker-compose stop prometheus +``` + ## Running or debugging Java built code Before running CPS, a Postgres database instance needs to be started. This can be done with following |