Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some fields for Lua allocator in INFO DEBUG #2716

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions commands/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,10 @@ It won't be included when `INFO` or `INFO ALL` are called, and it is returned on
* `eventloop_duration_cron_sum`: Total time consumption of cron in microseconds (including serverCron and beforeSleep, but excluding IO and AOF flushing)
* `eventloop_duration_max`: The maximal time spent in a single eventloop cycle in microseconds
* `eventloop_cmd_per_cycle_max`: The maximal number of commands processed in a single eventloop cycle
* `allocator_allocated_lua`: Total bytes allocated from the allocator specifically for Lua, including internal-fragmentation.
* `allocator_active_lua`: Total bytes in the allocator active pages specifically for Lua, this includes external-fragmentation.
* `allocator_resident_lua`: Total bytes resident (RSS) in the allocator specifically for Lua, this includes pages that can be released to the OS (by `MEMORY PURGE`, or just waiting).
* `allocator_frag_bytes_lua`: Delta between `allocator_active_lua` and `allocator_allocated_lua`.

[hcgcpgp]: http://code.google.com/p/google-perftools/

Expand Down
Loading