Regenerate integrations docs (#19263)
Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>
Netdata bot committed
Dec 21, 2024 at 14:15 UTC
03d19f23ed1863a32a6306e21c79657bd6c9219f
1 file changed
+26
-3
src/go/plugin/go.d/collector/nats/integrations/nats.md
+26
-3
@@ -69,15 +69,37 @@ Metrics:
69
70
| Metric | Dimensions | Unit |
71
|:------|:----------|:----|
72
-| nats.server_traffic | in, out | bytes/s |
73
-| nats.server_messages | in, out | messages/s |
74
-| nats.server_connections_current | active | connections |
72
+| nats.server_traffic | received, sent | bytes/s |
73
+| nats.server_messages | received, sent | messages/s |
74
+| nats.server_connections | active | connections |
75
| nats.server_connections_rate | connections | connections/s |
76
| nats.server_health_probe_status | ok, error | status |
77
| nats.server_cpu_usage | used | percent |
78
| nats.server_mem_usage | used | bytes |
79
| nats.server_uptime | uptime | seconds |
80
81
+### Per account
82
+
83
+These metrics refer to [accounts](https://docs.nats.io/running-a-nats-service/nats_admin/monitoring#account-statistics).
84
+
85
+Labels:
86
+
87
+| Label | Description |
88
+|:-----------|:----------------|
89
+| account | Account name. |
90
+
91
+Metrics:
92
+
93
+| Metric | Dimensions | Unit |
94
+|:------|:----------|:----|
95
+| nats.account_traffic | received, sent | bytes/s |
96
+| nats.account_messages | received, sent | messages/s |
97
+| nats.account_connections | active | connections |
98
+| nats.account_connections_rate | connections | connections/s |
99
+| nats.account_subscriptions | active | subscriptions |
100
+| nats.account_slow_consumers | slow | consumers/s |
101
+| nats.account_leaf_nodes | leafnode | servers |
102
+
103
### Per http endpoint
104
105
These metrics refer to HTTP endpoints.
@@ -138,6 +160,7 @@ The following options can be defined globally: update_every, autodetection_retry
160
| autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |
161
| url | Server URL. | http://127.0.0.1:8222 | yes |
162
| timeout | HTTP request timeout. | 1 | no |
163
+| healthz_check | Controls the behavior of the `/healthz` endpoint [health check](https://docs.nats.io/running-a-nats-service/nats_admin/monitoring#health). | default | no |
164
| username | Username for basic HTTP authentication. | | no |
165
| password | Password for basic HTTP authentication. | | no |
166
| proxy_url | Proxy URL. | | no |