You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- add host total free and available memory to /health
- keep process RSS and computed usage percent in the memory block
- update health pytest coverage for the expanded response shape
- update endpoint and Kubernetes docs for the new memory fields - 2026-03-19 02:46:59
Copy file name to clipboardExpand all lines: docs/kubernetes/kind-freelens.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,11 @@ Example response:
52
52
"uptime": 1
53
53
},
54
54
"memory": {
55
-
"rss_bytes": 12582912
55
+
"rss_bytes": 12582912,
56
+
"total_bytes": 17179869184,
57
+
"free_bytes": 8216707072,
58
+
"available_bytes": 10379091968,
59
+
"usage_percent": 0.07
56
60
},
57
61
"data": {
58
62
"path": ".data",
@@ -72,6 +76,10 @@ Example response:
72
76
```
73
77
74
78
`memory.rss_bytes` reports the current resident memory used by the running PyPNM process in bytes.
79
+
`memory.total_bytes` reports host total memory in bytes.
80
+
`memory.free_bytes` reports host free memory in bytes.
81
+
`memory.available_bytes` reports host available memory in bytes.
82
+
`memory.usage_percent` reports resident process memory as a percent of host total memory.
75
83
76
84
If the returned `service.version` is older than expected, verify the tag used in the deploy command and confirm the namespace matches the running deployment.
0 commit comments