From bd038519d872b326204a6c9e2342ddbd57015b1d Mon Sep 17 00:00:00 2001 From: Ardis Lu Date: Thu, 14 Sep 2023 00:41:05 -0700 Subject: [PATCH] website: fix typos (#28114) --- docs/getting-started/hardware-requirements.md | 2 +- docs/monitoring/dashboards.md | 2 +- docs/monitoring/metrics.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/hardware-requirements.md b/docs/getting-started/hardware-requirements.md index f3419b1c2e..0c8545cb56 100644 --- a/docs/getting-started/hardware-requirements.md +++ b/docs/getting-started/hardware-requirements.md @@ -18,7 +18,7 @@ It is recommended to use at least 16GB RAM. Disk space is usually the primary bottleneck for node operators. At the time of writing (September 2022) a 2TB SSD is recommended for a full node running Geth and a consensus client. Geth itself requires >650GB of disk space for a snap-synced full node and, with the default cache size, grows about 14GB/week. Pruning brings the total storage back down to the original 650GB. Archive nodes require additional space. A "full" archive node that keeps all state back to genesis requires more than 12TB of space. Partial archive nodes can also be created by turning off the garbage collector after some initial sync - the storage requirement depends how much state is saved. -As well as storage capacity, Geth nodes rely on fast read and write operations. This means HDDs and cheaper HDDS can sometimes struggle to sync the blockchain. A list of SSD models that users report being able and unable to sync Geth is available in this [GitHub Gist](https://gist.github.com/yorickdowne/f3a3e79a573bf35767cd002cc977b038). Please note that the list has _not_ been verified by the Geth team. +As well as storage capacity, Geth nodes rely on fast read and write operations. This means HDDs and cheaper SSDs can sometimes struggle to sync the blockchain. A list of SSD models that users report being able and unable to sync Geth is available in this [GitHub Gist](https://gist.github.com/yorickdowne/f3a3e79a573bf35767cd002cc977b038). Please note that the list has _not_ been verified by the Geth team. ## Bandwidth {#bandwidth} diff --git a/docs/monitoring/dashboards.md b/docs/monitoring/dashboards.md index 9e453a9ba2..2d7442db4e 100644 --- a/docs/monitoring/dashboards.md +++ b/docs/monitoring/dashboards.md @@ -35,7 +35,7 @@ sudo systemctl start influxdb sudo apt install influxdb-client ``` -By default,InfluxDB it is reachable at `localhost:8086`. Before using the `influx` client, a new user with admin privileges needs to be created. This user will serve for high level management, creating databases and users. +By default, InfluxDB it is reachable at `localhost:8086`. Before using the `influx` client, a new user with admin privileges needs to be created. This user will serve for high level management, creating databases and users. ```sh curl -XPOST "http://localhost:8086/query" --data-urlencode "q=CREATE USER username WITH PASSWORD 'password' WITH ALL PRIVILEGES" diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md index 4ef636ff3d..b1dce6947a 100644 --- a/docs/monitoring/metrics.md +++ b/docs/monitoring/metrics.md @@ -64,7 +64,7 @@ chain/account/commits.five-minute: 0.029134344092314267 Any developer is free to add, remove or modify the available metrics as they see fit. The precise list of available metrics is always available by opening the metrics server in the browser. -Geth also supports dumping metrics directly into an influx database. In order to activate this, the `--metrics.influxdb` flag must be provided at startup. The API endpoint,username, password and other influxdb tags can also be provided. The available tags are: +Geth also supports dumping metrics directly into an influx database. In order to activate this, the `--metrics.influxdb` flag must be provided at startup. The API endpoint, username, password and other influxdb tags can also be provided. The available tags are: ```sh --metrics.influxdb.endpoint value InfluxDB API endpoint to report metrics to (default: "http://localhost:8086")