{{ $t('Redis.redis_version') }}: |
{{ cache.info.redis_version }} |
{{ $t('Redis.redis_mode') }}: |
{{ cache.info.redis_mode == "standalone" ? $t('Redis.standalone') : $t('Redis.cluster') }} |
{{ $t('Redis.tcp_port') }}: |
{{ cache.info.tcp_port }} |
{{ $t('Redis.connected_clients') }}: |
{{ cache.info.connected_clients }} |
{{ $t('Redis.running') }}: |
{{ cache.info.uptime_in_days }} |
{{ $t('Redis.memory_use') }}: |
{{ cache.info.used_memory_human }} |
{{ $t('Redis.cpu') }}: |
{{ parseFloat(cache.info.used_cpu_user_children).toFixed(2) }} |
{{ $t('Redis.memory') }}: |
{{ cache.info.maxmemory_human }} |
{{ $t('Redis.AOF') }}: |
{{ cache.info.aof_enabled === "0" ? $t('common.No') : $t('common.Yes') }} |
{{ $t('Redis.RDB') }}: |
{{ cache.info.rdb_last_bgsave_status }} |
{{ $t('Redis.keys') }}: |
{{ cache.dbSize }} |
{{ $t('Redis.io') }}: |
{{ cache.info.instantaneous_input_kbps }}kps/{{ cache.info.instantaneous_output_kbps }}kps |