Skip to content

Commit 39dac57

Browse files
committed
Prometheus/Grafana: Copy editing
1 parent 61e6581 commit 39dac57

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

docs/admin/monitoring/prometheus-grafana.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,27 +51,33 @@ a quick walkthrough for Ubuntu Linux.
5151

5252
## Set up Prometheus Exporters
5353

54-
The fundamental exporters are included with Debian/Ubuntu.
55-
```shell
56-
apt install prometheus-node-exporter prometheus-sql-exporter
57-
```
58-
Then, set up the {ref}`prometheus-jmx-exporter` and configure the
59-
{ref}`prometheus-sql-exporter`.
60-
The [Prometheus Node Exporter] doesn't need much configuration.
54+
The Node Exporter and the JMX Exporter need to be installed on all
55+
machines that are running CrateDB nodes.
56+
57+
1. Install the Prometheus Node Exporter.
58+
```shell
59+
apt install prometheus-node-exporter
60+
```
61+
62+
2. Install the {ref}`prometheus-jmx-exporter`.
6163

6264
## Set up Prometheus
6365

64-
You would run this on a machine that is not part of the CrateDB cluster,
65-
and it can be installed with:
66+
You would typically run this on a machine that is not part of the
67+
CrateDB cluster.
68+
The {ref}`prometheus-sql-exporter` also does not need to be installed
69+
on each machine.
70+
6671
```shell
67-
apt install prometheus --no-install-recommends
72+
apt install prometheus prometheus-sql-exporter --no-install-recommends
6873
```
74+
6975
For advanced configuration options, see {ref}`prometheus-auth` and
7076
{ref}`prometheus-storage`.
7177

7278
Now, configure Prometheus to scrape metrics from Node Exporters and
73-
JMX Exporters on all CrateDB machines, and also metrics from the Crate
74-
JMX HTTP Exporter.
79+
JMX Exporters on all CrateDB nodes, and also metrics from the SQL
80+
Exporter.
7581
```shell
7682
nano /etc/prometheus/prometheus.yml
7783
```

0 commit comments

Comments
 (0)