@@ -162,13 +162,15 @@ for all processes of all extant cluster replicas.
162162At this time, we do not make any guarantees about the exactness or freshness of these numbers.
163163
164164<!-- RELATION_SPEC mz_internal.mz_cluster_replica_metrics -->
165- | Field | Type | Meaning |
166- | ------------------- | ------------ | -------- |
167- | ` replica_id ` | [ ` text ` ] | The ID of a cluster replica. |
168- | ` process_id ` | [ ` uint8 ` ] | The ID of a process within the replica. |
169- | ` cpu_nano_cores ` | [ ` uint8 ` ] | Approximate CPU usage, in billionths of a vCPU core. |
170- | ` memory_bytes ` | [ ` uint8 ` ] | Approximate RAM usage, in bytes. |
171- | ` disk_bytes ` | [ ` uint8 ` ] | Approximate disk usage in bytes. |
165+ | Field | Type | Meaning
166+ | ------------------- | ------------ | --------
167+ | ` replica_id ` | [ ` text ` ] | The ID of a cluster replica.
168+ | ` process_id ` | [ ` uint8 ` ] | The ID of a process within the replica.
169+ | ` cpu_nano_cores ` | [ ` uint8 ` ] | Approximate CPU usage, in billionths of a vCPU core.
170+ | ` memory_bytes ` | [ ` uint8 ` ] | Approximate RAM usage, in bytes.
171+ | ` disk_bytes ` | [ ` uint8 ` ] | Approximate disk usage, in bytes.
172+ | ` heap_bytes ` | [ ` uint8 ` ] | Approximate heap (RAM + swap) usage, in bytes.
173+ | ` heap_limit ` | [ ` uint8 ` ] | Available heap (RAM + swap) space, in bytes.
172174
173175## ` mz_cluster_replica_metrics_history `
174176
@@ -183,10 +185,12 @@ At this time, we do not make any guarantees about the exactness or freshness of
183185| ---------------- | --------- | --------
184186| ` replica_id ` | [ ` text ` ] | The ID of a cluster replica.
185187| ` process_id ` | [ ` uint8 ` ] | The ID of a process within the replica.
186- | ` cpu_nano_cores ` | [ ` uint8 ` ] | Approximate CPU usage in billionths of a vCPU core.
187- | ` memory_bytes ` | [ ` uint8 ` ] | Approximate memory usage in bytes.
188- | ` disk_bytes ` | [ ` uint8 ` ] | Approximate disk usage in bytes.
188+ | ` cpu_nano_cores ` | [ ` uint8 ` ] | Approximate CPU usage, in billionths of a vCPU core.
189+ | ` memory_bytes ` | [ ` uint8 ` ] | Approximate memory usage, in bytes.
190+ | ` disk_bytes ` | [ ` uint8 ` ] | Approximate disk usage, in bytes.
189191| ` occurred_at ` | [ ` timestamp with time zone ` ] | Wall-clock timestamp at which the event occurred.
192+ | ` heap_bytes ` | [ ` uint8 ` ] | Approximate heap (RAM + swap) usage, in bytes.
193+ | ` heap_limit ` | [ ` uint8 ` ] | Available heap (RAM + swap) space, in bytes.
190194
191195## ` mz_cluster_replica_statuses `
192196
@@ -225,13 +229,14 @@ for all processes of all extant cluster replicas, as a percentage of the total r
225229At this time, we do not make any guarantees about the exactness or freshness of these numbers.
226230
227231<!-- RELATION_SPEC mz_internal.mz_cluster_replica_utilization -->
228- | Field | Type | Meaning |
229- | ------------------| ----------------------| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
230- | ` replica_id ` | [ ` text ` ] | The ID of a cluster replica. |
231- | ` process_id ` | [ ` uint8 ` ] | The ID of a process within the replica. |
232- | ` cpu_percent ` | [ ` double precision ` ] | Approximate CPU usage in percent of the total allocation. |
233- | ` memory_percent ` | [ ` double precision ` ] | Approximate RAM usage in percent of the total allocation. |
234- | ` disk_percent ` | [ ` double precision ` ] | Approximate disk usage in percent of the total allocation. |
232+ | Field | Type | Meaning
233+ |------------------|----------------------|---------
234+ | ` replica_id ` | [ ` text ` ] | The ID of a cluster replica.
235+ | ` process_id ` | [ ` uint8 ` ] | The ID of a process within the replica.
236+ | ` cpu_percent ` | [ ` double precision ` ] | Approximate CPU usage, in percent of the total allocation.
237+ | ` memory_percent ` | [ ` double precision ` ] | Approximate RAM usage, in percent of the total allocation.
238+ | ` disk_percent ` | [ ` double precision ` ] | Approximate disk usage, in percent of the total allocation.
239+ | ` heap_percent ` | [ ` double precision ` ] | Approximate heap (RAM + swap) usage, in percent of the total allocation.
235240
236241## ` mz_cluster_replica_utilization_history `
237242
@@ -246,9 +251,10 @@ At this time, we do not make any guarantees about the exactness or freshness of
246251|------------------|----------------------|--------
247252| ` replica_id ` | [ ` text ` ] | The ID of a cluster replica.
248253| ` process_id ` | [ ` uint8 ` ] | The ID of a process within the replica.
249- | ` cpu_percent ` | [ ` double precision ` ] | Approximate CPU usage in percent of the total allocation.
250- | ` memory_percent ` | [ ` double precision ` ] | Approximate RAM usage in percent of the total allocation.
251- | ` disk_percent ` | [ ` double precision ` ] | Approximate disk usage in percent of the total allocation.
254+ | ` cpu_percent ` | [ ` double precision ` ] | Approximate CPU usage, in percent of the total allocation.
255+ | ` memory_percent ` | [ ` double precision ` ] | Approximate RAM usage, in percent of the total allocation.
256+ | ` disk_percent ` | [ ` double precision ` ] | Approximate disk usage, in percent of the total allocation.
257+ | ` heap_percent ` | [ ` double precision ` ] | Approximate heap (RAM + swap) usage, in percent of the total allocation.
252258| ` occurred_at ` | [ ` timestamp with time zone ` ] | Wall-clock timestamp at which the event occurred.
253259
254260## ` mz_cluster_replica_history `
0 commit comments