diff --git a/astro/src/content/docs/operate/secure-and-monitor/cloudwatch.mdx b/astro/src/content/docs/operate/secure-and-monitor/cloudwatch.mdx
index 37600a2b4a..b508038b7e 100644
--- a/astro/src/content/docs/operate/secure-and-monitor/cloudwatch.mdx
+++ b/astro/src/content/docs/operate/secure-and-monitor/cloudwatch.mdx
@@ -14,7 +14,7 @@ import InlineUIElement from 'src/components/InlineUIElement.astro';
## Overview
-Amazon CloudWatch monitors your Amazon Web Services (AWS) resources and the applications you run on AWS in real time. You can use CloudWatch to collect and track metrics for your resources and applications. Additionally, you can create dashboards to display metrics for your applications or to show custom collections of metrics.
+Amazon CloudWatch monitors your Amazon Web Services (AWS) resources and the applications you run on AWS in real-time. You can use CloudWatch to collect and track metrics for your resources and applications. Additionally, you can create dashboards to display metrics for your applications or to show custom collections of metrics.
This guide will show you how to:
@@ -22,7 +22,7 @@ This guide will show you how to:
- Set up a custom collector agent to send data to Amazon CloudWatch.
- Create a dashboard in Amazon CloudWatch to view metrics.
-We'll also take a look at which FusionAuth metrics are useful in Amazon CloudWatch. Please go through the [FusionAuth guide to monitoring for an overview of the available metrics](/docs/operate/secure-and-monitor/monitor). For an overview of the metrics you can collect with Amazon CloudWatch agent, review the [CloudWatch agent metrics document](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/metrics-collected-by-CloudWatch-agent.html).
+We'll also take a look at which FusionAuth metrics are useful in Amazon CloudWatch. Please read the [FusionAuth guide to monitoring for an overview of the available metrics](/docs/operate/secure-and-monitor/monitor). For an overview of the metrics you can collect with Amazon CloudWatch agent, review the [CloudWatch agent metrics document](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/metrics-collected-by-CloudWatch-agent.html).
## Set Up Your Amazon Account
@@ -95,7 +95,7 @@ Generate an access key for the CloudWatch agent user.
The access keys will look something like this:
```sh
@@ -119,9 +119,9 @@ In this section, you will need the region your AWS account uses. Get your region
Save the Dockerfile from the [FusionAuth containers repo](https://github.com/FusionAuth/fusionauth-containers/blob/master/docker/fusionauth/fusionauth-app/Dockerfile) to your working directory on your computer.
-Edit the Dockerfile and replace line 92 `&& apt-get -y install --no-install-recommends curl \` with `&& apt-get -y install --no-install-recommends curl unzip ca-certificates sudo \`. This adds the `unzip`, `sudo` and `ca-certificates` packages to the image.
+Edit the Dockerfile and replace line 92 `&& apt-get -y install --no-install-recommends curl \` with `&& apt-get -y install --no-install-recommends curl unzip ca-certificates sudo \`. This adds the `unzip`, `sudo`, and `ca-certificates` packages to the image.
-Replace the section marked the comment "###### Connect the log file to stdout" with the following configuration.
+Replace the section marked with the comment "###### Connect the log file to stdout" with the following configuration.
```
###### Connect the log file to stdout #############################################################
@@ -306,7 +306,7 @@ On the next screen, you have a few options to choose from to configure the dashb
Click Next.
-Now you can add metrics to the widget and configure some options. Give your graph a title and choose "1h" for the time preference. You can also set the refresh interval from the drop down on the far right.
+Now you can add metrics to the widget and configure some options. Give your graph a title and choose "1h" for the time preference. You can also set the refresh interval from the dropdown on the far right.
@@ -569,7 +569,7 @@ Build the `Dockerfile` with the following command.
docker build --platform linux/amd64 -t cloudwatch-logger .
```
-Finally, add the following service to the FusionAuth `docker-compose.yml` file. You will need to change the region, access key, secret access key, FusionAuth API key and FusionAuth app Id to your values.
+Finally, add the following service to the FusionAuth `docker-compose.yml` file. You will need to change the region, access key, secret access key, FusionAuth API key, and FusionAuth app Id to your values.
```yaml
cloudwatch-logger: # NEW for custom logging
@@ -664,7 +664,7 @@ Click Edit inbound rules. Select `Custom TCP`
Return to the instance screen and make sure the instance is running.
-Now, find the public IP on the Instance overview screen, then log in to the console by typing the following in the terminal, replacing `16.16.204.161` with your public IP and `test.pem` with the name of you downloaded key pair file.
+Now, find the public IP on the Instance overview screen, then log in to the console by typing the following in the terminal, replacing `16.16.204.161` with your public IP and `test.pem` with the name of your downloaded key pair file.
First change the permissions of the key file if they are too open
@@ -776,7 +776,7 @@ scp -i ./test.pem ./cloudwatch-config.json ec2-user@16.16.204.161:~/fusionaut
scp -i ./test.pem ./Dockerfile ec2-user@16.16.204.161:~/fusionauth-project/
```
-Comment out the `cloudwatch-logger:` service you added to `docker-compose.yml` file earlier and also copy the file to the instance.
+Comment out the `cloudwatch-logger:` service you added to the `docker-compose.yml` file earlier and copy the file to the instance.
```sh
scp -i ./test.pem ./docker-compose.yml ec2-user@16.16.204.161:~/fusionauth-project/