Skip to content

Commit d20d4d5

Browse files
committed
Fix minor bugs in the docs
1 parent 581054d commit d20d4d5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

articles/event-grid/edge/monitor-topics-subscriptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Configure the module to emit metrics by setting the `metrics__reporterType` envi
3535
}
3636
```
3737

38-
Metrics will be available at `5888/metrics` of the module for http and `4438/metrics` for https. For example, `http://<modulename>:4438/metrics?api-version=2019-01-01-preview` for http. At this point, a metrics module can poll the endpoint to collect metrics as in this [example architecture](https://github.com/veyalla/ehm).
38+
Metrics will be available at `5888/metrics` of the module for http and `4438/metrics` for https. For example, `http://<modulename>:5888/metrics?api-version=2019-01-01-preview` for http. At this point, a metrics module can poll the endpoint to collect metrics as in this [example architecture](https://github.com/veyalla/ehm).
3939

4040
## Available metrics
4141

articles/event-grid/edge/persist-state-linux.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ Instead of a docker volume, you also have the option to mount a host folder.
111111
{
112112
"HostConfig": {
113113
"Binds": [
114-
"<your-directory-name-here>:/app/metadataDb"
114+
"<your-directory-name-here>:/app/metadataDb",
115+
"<your-directory-name-here>:/app/eventsDb",
115116
]
116117
}
117118
}
@@ -151,7 +152,7 @@ Instead of a docker volume, you also have the option to mount a host folder.
151152
```
152153

153154
>[!IMPORTANT]
154-
>Do not change the second part of the bind value. It points to a specific location within the module. For the Event Grid module on linux, it has to be **/app/metadata**.
155+
>Do not change the second part of the bind value. It points to a specific location within the module. For the Event Grid module on linux, it has to be **/app/metadataDb** and **/app/eventsDb**
155156

156157

157158
## Persist events

articles/event-grid/edge/persist-state-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@ Instead of mounting a volume, you can create a directory on the host system and
207207
```
208208
## Persist events
209209

210-
To enable event persistence, you must first enable metadata persistence either via volume mount or host directory mount using the above sections.
210+
To enable event persistence, you must first enable events persistence either via volume mount or host directory mount using the above sections.
211211

212212
Important things to note about persisting events:
213213

214214
* Persisting events is enabled on a per Event Subscription basis and is opt-in once a volume or directory has been mounted.
215215
* Event persistence is configured on an Event Subscription at creation time and cannot be modified once the Event Subscription is created. To toggle event persistence, you must delete and re-create the Event Subscription.
216-
* Persisting events is almost always slower than in memory operations, however the speed difference is highly dependent on the characteristics of the drive. The tradeoff between speed and reliability is inherent to all messaging systems but only becomes a noticible at large scale.
216+
* Persisting events is almost always slower than in memory operations, however the speed difference is highly dependent on the characteristics of the drive. The tradeoff between speed and reliability is inherent to all messaging systems but only becomes a noticeable at large scale.
217217

218218
To enable event persistence on an Event Subscription, set `persistencePolicy` to `true`:
219219

0 commit comments

Comments
 (0)