Lines Matching refs:cron_malloc_stats
962 (float)server.cron_malloc_stats.process_rss / server.cron_malloc_stats.zmalloc_used; in getMemoryOverheadData()
964 server.cron_malloc_stats.process_rss - server.cron_malloc_stats.zmalloc_used; in getMemoryOverheadData()
966 … (float)server.cron_malloc_stats.allocator_active / server.cron_malloc_stats.allocator_allocated; in getMemoryOverheadData()
968 server.cron_malloc_stats.allocator_active - server.cron_malloc_stats.allocator_allocated; in getMemoryOverheadData()
970 … (float)server.cron_malloc_stats.allocator_resident / server.cron_malloc_stats.allocator_active; in getMemoryOverheadData()
972 server.cron_malloc_stats.allocator_resident - server.cron_malloc_stats.allocator_active; in getMemoryOverheadData()
974 (float)server.cron_malloc_stats.process_rss / server.cron_malloc_stats.allocator_resident; in getMemoryOverheadData()
976 server.cron_malloc_stats.process_rss - server.cron_malloc_stats.allocator_resident; in getMemoryOverheadData()
1399 addReplyLongLong(c,server.cron_malloc_stats.allocator_allocated); in memoryCommand()
1402 addReplyLongLong(c,server.cron_malloc_stats.allocator_active); in memoryCommand()
1405 addReplyLongLong(c,server.cron_malloc_stats.allocator_resident); in memoryCommand()