We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe40226 commit 82ea739Copy full SHA for 82ea739
src/Dashboards/Redis/RedisTrait.php
@@ -151,6 +151,7 @@ private function memoryPanel(array $info): ?array {
151
'Free' => $max_memory > 0 ? Format::bytes($max_memory - $used_memory) : '∞',
152
'Peak memory usage' => Format::bytes((int) ($memory_info['used_memory_peak'] ?? 0)),
153
'Fragmentation ratio' => $memory_info['mem_fragmentation_ratio'] ?? 'N/A',
154
+ 'Lua memory usage' => Format::bytes((int) ($memory_info['used_memory_lua'] ?? 0)),
155
],
156
];
157
}
0 commit comments