whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
opcodesio
/
log-viewer
/
src
/
Logs
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/opcodesio/log-viewer/src/Logs/RedisLog.php
<?php namespace Opcodes\LogViewer\Logs; use Opcodes\LogViewer\LogLevels\RedisLogLevel; class RedisLog extends Log { public static string $name = 'Redis'; public static string $regex = '/^(?<pid>\d+):(?<role_letter>\w) (?<datetime>.*) (?<level>[.\-*#]) (?<message>.*)/'; public static string $levelClass = RedisLogLevel::class; public static array $columns = [ ['label' => 'Datetime', 'data_path' => 'datetime'], ['label' => 'PID', 'data_path' => 'context.pid'], ['label' => 'Role', 'data_path' => 'context.role'], ['label' => 'Severity', 'data_path' => 'level'], ['label' => 'Message', 'data_path' => 'message'], ]; protected function fillMatches(array $matches = []): void { parent::fillMatches($matches); $this->context = [ 'pid' => intval($matches['pid'] ?? null), 'role' => $matches['role_letter'], 'role_description' => match ($matches['role_letter'] ?? null) { 'X' => 'sentinel', 'S' => 'slave', 'M' => 'master', 'C' => 'RDB/AOF writing child', default => null, }, ]; } }
Copyright ©2021 || Defacer Indonesia