File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed
docs/integrate/prometheus Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change 11(prometheus-usage)=
22# Store Prometheus long-term metrics into CrateDB
33
4- This usage guide shows how to:
5-
6- * Set up Docker Compose to run CrateDB, Prometheus, and the CrateDB Prometheus Adapter
7- * Run the applications with Docker Compose
8-
9- :::{note}
10- These examples use CrateDB 4.7.0, Prometheus 2.33.3, and the CrateDB Prometheus Adapter 0.5.8.
11- :::
4+ This usage guide shows how to use Docker Compose to run the services
5+ CrateDB, Prometheus, and the CrateDB Prometheus Adapter.
126
137## Motivation
148
@@ -42,22 +36,22 @@ You will create these files in the following steps.
4236``` yaml
4337services :
4438 cratedb :
45- image : " crate:4.7.0 "
39+ image : " docker.io/ crate:latest "
4640 ports :
4741 - " 4200:4200"
4842 - " 5432:5432"
4943 volumes :
5044 - cratedb-data:/data
5145 restart : unless-stopped
5246 prometheus :
53- image : " prom/prometheus:v2.33.3 "
47+ image : " docker.io/ prom/prometheus:latest "
5448 volumes :
5549 - ./prometheus.yml:/etc/prometheus/prometheus.yml
5650 ports :
5751 - " 9090:9090"
5852 restart : unless-stopped
5953 cratedb-prometheus-adapter :
60- image : " ghcr.io/crate/cratedb-prometheus-adapter:0.5.8 "
54+ image : " ghcr.io/crate/cratedb-prometheus-adapter:latest "
6155 volumes :
6256 - ./config.yml:/etc/cratedb-prometheus-adapter/config.yml
6357 ports :
You can’t perform that action at this time.
0 commit comments