Home
last modified time | relevance | path

Searched refs:cron_malloc_stats (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dobject.c962 (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()
[all …]
H A Dserver.c1170 … server.cron_malloc_stats.allocator_resident = server.cron_malloc_stats.process_rss - lua_memory; in serverCron()
1172 if (!server.cron_malloc_stats.allocator_active) in serverCron()
1173 server.cron_malloc_stats.allocator_active = server.cron_malloc_stats.allocator_resident; in serverCron()
1175 server.cron_malloc_stats.allocator_allocated = server.cron_malloc_stats.zmalloc_used; in serverCron()
2120 server.cron_malloc_stats.zmalloc_used = 0; in initServer()
2121 server.cron_malloc_stats.process_rss = 0; in initServer()
2122 server.cron_malloc_stats.allocator_allocated = 0; in initServer()
2123 server.cron_malloc_stats.allocator_active = 0; in initServer()
2124 server.cron_malloc_stats.allocator_resident = 0; in initServer()
3301 server.cron_malloc_stats.process_rss, in genRedisInfoString()
[all …]
H A Dserver.h1029 struct malloc_stats cron_malloc_stats; /* sampled in serverCron(). */ member