From 0ec9aff0a7ce0dcf564a54f9b74c7959231a5fa6 Mon Sep 17 00:00:00 2001 From: Alex Yang Date: Sun, 17 Aug 2025 22:30:47 -0700 Subject: [PATCH] doc: clarify maxRSS unit in `process.resourceUsage()` --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 2d209520c40467..dbb37f9da3b982 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -3642,7 +3642,7 @@ added: v12.6.0 * `systemCPUTime` {integer} maps to `ru_stime` computed in microseconds. It is the same value as [`process.cpuUsage().system`][process.cpuUsage]. * `maxRSS` {integer} maps to `ru_maxrss` which is the maximum resident set - size used in kilobytes. + size used in kibibytes (1024 bytes). * `sharedMemorySize` {integer} maps to `ru_ixrss` but is not supported by any platform. * `unsharedDataSize` {integer} maps to `ru_idrss` but is not supported by