docs: fix `<br>` in streaming (#20302)
Ilya Mashchenko committed
May 19, 2025 at 15:26 UTC
eb6e75c6846a43e63548c46cdf147be1ecaaea5f
2 files changed
+10
-10
docs/nodes-ephemerality.md
+4
-4
@@ -4,10 +4,10 @@
4
5
Netdata categorizes nodes into two types:
6
7
-| Type | Description | Common Use Cases |
8
-|---------------|------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9
-| **Ephemeral** | Expected to disconnect or reconnect frequently | • Auto-scaling cloud instances<br\>• Dynamic containers and VMs<br\>• IoT devices with intermittent connectivity<br\>• Development/test environments with frequent restarts |
10
-| **Permanent** | Expected to maintain continuous connectivity | • Production servers<br\>• Core infrastructure nodes<br\>• Critical monitoring systems<br\>• Stable database servers |
7
+| Type | Description | Common Use Cases |
8
+|---------------|------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9
+| **Ephemeral** | Expected to disconnect or reconnect frequently | • Auto-scaling cloud instances<br />• Dynamic containers and VMs<br />• IoT devices with intermittent connectivity<br />• Development/test environments with frequent restarts |
10
+| **Permanent** | Expected to maintain continuous connectivity | • Production servers<br />• Core infrastructure nodes<br />• Critical monitoring systems<br />• Stable database servers |
11
12
:::note
13
src/streaming/README.md
+6
-6
@@ -56,12 +56,12 @@ class B,D default;
56
57
## Quick Reference
58
59
-| Task | Configuration | Example |
60
-|------------------------------------------|-------------------------------------------|----------------------------------------------------------------|
61
-| Enable streaming on a child | Set `enabled = yes` in `[stream]` section | `[stream]`<br\>`enabled = yes`<br\>`destination = 192.168.1.5` |
62
-| Configure a parent to accept connections | Create an `[API_KEY]` section | `[API_KEY]`<br\>`enabled = yes`<br\>`allow from = *` |
63
-| Set up high availability | Configure multiple destinations on child | `[stream]`<br\>`destination = parent1:19999 parent2:19999` |
64
-| Filter which metrics to send | Use `send charts matching` setting | `send charts matching = system.* !system.uptime` |
59
+| Task | Configuration | Example |
60
+|------------------------------------------|-------------------------------------------|------------------------------------------------------------------|
61
+| Enable streaming on a child | Set `enabled = yes` in `[stream]` section | `[stream]`<br />`enabled = yes`<br />`destination = 192.168.1.5` |
62
+| Configure a parent to accept connections | Create an `[API_KEY]` section | `[API_KEY]`<br />`enabled = yes`<br />`allow from = *` |
63
+| Set up high availability | Configure multiple destinations on child | `[stream]`<br />`destination = parent1:19999 parent2:19999` |
64
+| Filter which metrics to send | Use `send charts matching` setting | `send charts matching = system.* !system.uptime` |
65
66
## Configuration Overview
67