Skip to content

Commit e27df98

Browse files
committed
Prometheus: Improve OCI references and teaser paragraph.
1 parent 5559d2e commit e27df98

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

docs/integrate/prometheus/usage.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
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
4337
services:
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:

0 commit comments

Comments
 (0)