mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-28 16:48:51 +00:00
39 lines
1.8 KiB
PHP
39 lines
1.8 KiB
PHP
<?php
|
|
|
|
class Cron_Controller extends Controller
|
|
{
|
|
public function indexAction()
|
|
{
|
|
foreach ($this->app->config['database']['redis'] as $serverId => $server) {
|
|
if (!empty($server['stats']['enable'])) {
|
|
$time = time();
|
|
|
|
$db = Db::factory($server);
|
|
$info = $db->info();
|
|
|
|
$statsModel = new Stats_Model($server);
|
|
$statsModel->addKey('memory', $info['used_memory'], $time);
|
|
$statsModel->addKey('connections', $info['total_connections_received'], $time);
|
|
$statsModel->addKey('commands', $info['total_commands_processed'], $time);
|
|
$statsModel->addKey('expired_keys', $info['expired_keys'], $time);
|
|
$statsModel->addKey('hits', $info['keyspace_hits'], $time);
|
|
$statsModel->addKey('misses', $info['keyspace_misses'], $time);
|
|
$statsModel->addKey('clients', $info['connected_clients'], $time);
|
|
$statsModel->addKey('user_cpu', $info['used_cpu_user'], $time);
|
|
$statsModel->addKey('system_cpu', $info['used_cpu_sys'], $time);
|
|
if ($info['aof_enabled']) {
|
|
$statsModel->addKey('aof_size', $info['aof_current_size'], $time);
|
|
$statsModel->addKey('aof_base', $info['aof_base_size'], $time);
|
|
}
|
|
|
|
foreach ($this->infoModel->getDbs($info) as $i) {
|
|
if (preg_match('/keys=([0-9]+),expires=([0-9]+)/', $info["db{$i}"], $matches)) {
|
|
$statsModel->addKey("db{$i}:keys", $matches[1], $time);
|
|
$statsModel->addKey("db{$i}:expired_keys", $matches[2], $time);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|