Skip to content

Commit 45e3d42

Browse files
committed
linguistic-corrections
1 parent 80ed6cb commit 45e3d42

File tree

5 files changed

+20
-35
lines changed

5 files changed

+20
-35
lines changed

src/install/mysql/aurora/enable-mysql-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ To capture data from the MySQL integration, you must first create a MySQL user w
3131
mysql -e "GRANT PROCESS ON *.* TO 'newrelic'@'AWS-or-Azure-instance-name' WITH MAX_USER_CONNECTIONS 5;"
3232
```
3333

34-
<Callout variant="tip" title="Tip">
34+
<Callout variant="tip">
3535
Each command sets a maximum of 5 user connections.
3636
</Callout>

src/install/mysql/aurora/query-monitoring.mdx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ Follow these instructions to enable Performance Schema for Aurora MySQL:
1414
2. Select `Parameter groups` and either:
1515

1616
* Create two new DB Parameter Groups: one for the Aurora cluster and another for the Aurora instance, with a family matching your Aurora MySQL version For example, `aurora-mysql8.0`.
17-
* Modify existing custom DB Parameter Groups already associated with your Aurora DB setup. Do not modify the default parameter group.
17+
* Modify existing custom DB Parameter Groups already associated with your Aurora DB setup.
18+
19+
<Callout variant="tip">
20+
Don't modify the default parameter group.
21+
</Callout>
1822

1923
3. Configure the DB Parameter Groups by setting the following consumer parameters:
2024

@@ -30,9 +34,12 @@ Follow these instructions to enable Performance Schema for Aurora MySQL:
3034
performance_schema_max_sql_text_length = 4096
3135
```
3236

33-
4. Associate the modified or newly created DB Parameter Groups with your Aurora DB cluster and instance. (Select your DB cluster and instance in the RDS console, click `Modify`, and find the `DB instance parameter group` and `DB cluster parameter group` settings.)
37+
4. Associate the parameter groups with your Aurora DB cluster and instance:
38+
39+
* In the RDS console, select your DB cluster or instance and click Modify.
40+
* In DB instance parameter group and DB cluster parameter group, choose the groups you edited.
3441

35-
5. Reboot your Aurora DB instance for the changes to take effect. For more information, refer to [Working with DB Parameter Groups documentation](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html).
42+
5. Reboot your Aurora DB instance for the changes to take effect. For more information, refer to AWS Documentation on [Working with DB Parameter Groups](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html).
3643

3744
2. To enable query-level monitoring, you must also enable the Performance Schema consumers and instruments using one of the following methods:
3845

@@ -56,13 +63,7 @@ Follow these instructions to enable Performance Schema for Aurora MySQL:
5663
GRANT EXECUTE ON newrelic.* TO 'newrelic'@'AWS-or-Azure-instance-name';
5764
```
5865

59-
2. To set up procedure for runtime activation of consumers and instruments:
60-
61-
<Callout variant="tip">
62-
63-
New Relic recommends that you create the following procedure to grant the Agent the ability to enable `performance_schema.events_* consumers` and `instruments` at runtime.
64-
65-
</Callout>
66+
2. To create stored procedure as New Relic agent uses this procedure to enable the required `performance_schema` consumers and instruments at runtime:
6667

6768
```sql
6869
DELIMITER $$
@@ -84,7 +85,7 @@ Follow these instructions to enable Performance Schema for Aurora MySQL:
8485
>
8586

8687
<Callout variant="tip">
87-
Grants the monitoring user direct UPDATE privileges on `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. This allows the New Relic agent to manage required Performance Schema settings directly.
88+
Grants the monitoring user `UPDATE` privileges on the `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. The New Relic agent uses these privileges to manage Performance Schema settings.
8889
</Callout>
8990

9091
```sql

src/install/mysql/linux/query-monitoring.mdx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,7 @@ Query-level monitoring is supported only on MySQL version 8.0 and later.
131131
GRANT EXECUTE ON newrelic.* TO 'newrelic'@'localhost';
132132
```
133133

134-
2. To set up procedure for runtime activation of consumers and instruments:
135-
136-
<Callout variant="tip">
137-
138-
Newrelic recommends that you create the following procedure to grant the Agent the ability to enable performance_schema.events_* `consumers` and `instruments` at runtime.
139-
140-
</Callout>
134+
2. To create the procedure to allow the New Relic agent to `enable performance_schema.events_*` `consumers` and `instruments` at runtime:
141135

142136
```sql
143137
DELIMITER $$
@@ -159,7 +153,7 @@ Query-level monitoring is supported only on MySQL version 8.0 and later.
159153
>
160154

161155
<Callout variant="tip">
162-
Grants the monitoring user direct UPDATE privileges on `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. This allows the New Relic agent to manage required Performance Schema settings directly.
156+
Grants the monitoring user `UPDATE` privileges on the `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. The New Relic agent uses these privileges to manage Performance Schema settings.
163157
</Callout>
164158

165159
```sql

src/install/mysql/rds/query-monitoring.mdx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ componentType: default
33
headingText: (Optional) Enable MySQL query-level monitoring
44
---
55

6-
Configure your integration to enable query-level monitoring in New Relic. By setting the appropriate parameters, you can capture detailed metrics on query performance, which allows you to identify and optimize slow or inefficient queries. For more information, refer [Query-Level monitoring](/docs/infrastructure/infrastructure-data/query-level-monitoring).
6+
Configure your integration to enable query-level monitoring in New Relic. By setting the appropriate parameters, you can capture detailed metrics on query performance, which allows you to identify and optimize slow or inefficient queries. For more information, refer to [Query-Level monitoring](/docs/infrastructure/infrastructure-data/query-level-monitoring).
77

88
Follow these instructions to enable the Performance Schema. The configuration method outlined here applies specifically to MySQL RDS.
99

@@ -51,13 +51,7 @@ Follow these instructions to enable the Performance Schema. The configuration me
5151
GRANT EXECUTE ON newrelic.* TO 'newrelic'@'AWS-or-Azure-instance-name';
5252
```
5353

54-
2. To set up procedure for runtime activation of consumers and instruments:
55-
56-
<Callout variant="tip">
57-
58-
New Relic recommends that you create the following procedure to grant the Agent the ability to enable `performance_schema.events_* consumers` and `instruments` at runtime.
59-
60-
</Callout>
54+
2. To create the procedure to allow the New Relic agent to `enable performance_schema.events_*` `consumers` and `instruments` at runtime:
6155

6256
```sql
6357
DELIMITER $$
@@ -79,7 +73,7 @@ Follow these instructions to enable the Performance Schema. The configuration me
7973
>
8074

8175
<Callout variant="tip">
82-
Grants the monitoring user direct UPDATE privileges on `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. This allows the New Relic agent to manage required Performance Schema settings directly.
76+
Grants the monitoring user `UPDATE` privileges on the `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. The New Relic agent uses these privileges to manage Performance Schema settings.
8377
</Callout>
8478

8579
```sql

src/install/mysql/windows/query-monitoring.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,7 @@ Query-level monitoring is supported only on MySQL version 8.0 and later.
7373
GRANT EXECUTE ON newrelic.* TO 'newrelic'@'AWS-or-Azure-instance-name';
7474
```
7575

76-
2. To set up procedure for runtime activation of consumers and instruments:
77-
78-
<Callout variant="tip">
79-
80-
New Relic recommends that you create the following procedure to grant the Agent the ability to enable `performance_schema.events_* consumers` and `instruments` at runtime.
76+
2. To create the procedure to allow the New Relic agent to `enable performance_schema.events_*` `consumers` and `instruments` at runtime:
8177

8278
</Callout>
8379

@@ -101,7 +97,7 @@ Query-level monitoring is supported only on MySQL version 8.0 and later.
10197
>
10298

10399
<Callout variant="tip">
104-
Grants the monitoring user direct UPDATE privileges on `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. This allows the New Relic agent to manage required Performance Schema settings directly.
100+
Grants the monitoring user `UPDATE` privileges on the `performance_schema.setup_consumers` and `performance_schema.setup_instruments` tables. The New Relic agent uses these privileges to manage Performance Schema settings.
105101
</Callout>
106102

107103
```sql

0 commit comments

Comments
 (0)