"num_objects" : int | Number of arrays, mappings, multisets, objects and programs.
|
"num_allocs" : int | Number of memory allocations since the last gc run.
|
"alloc_threshold" : int | Threshold for "num_allocs" when another automatic gc run is
scheduled.
|
"projected_garbage" : float | Estimation of the current amount of garbage.
|
"objects_alloced" : int | Decaying average over the number of allocated objects
between gc runs.
|
"objects_freed" : int | Decaying average over the number of freed objects in each gc
run.
|
"last_garbage_ratio" : float | Garbage ratio in the last gc run.
|
"non_gc_time" : int | Decaying average over the CPU milliseconds spent outside the
garbage collector.
|
"gc_time" : int | Decaying average over the CPU milliseconds spent inside the
garbage collector.
|
"last_garbage_strategy" : string | The garbage accumulation goal that the gc aimed for when
setting "alloc_threshold" in the last run. The value is
either "garbage_ratio_low" or "garbage_ratio_high", which
corresponds to the gc parameters with the same names in
Pike.gc_parameters .
|
"last_gc" : int | Time when the garbage-collector last ran.
|