2013-04-08 15:40:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!function_exists('opcache_get_status')) {
|
|
|
|
die('Zend OPcache does not appear to be running');
|
|
|
|
}
|
|
|
|
|
|
|
|
$settings = array(
|
|
|
|
'compress_path_threshold' => 2
|
|
|
|
);
|
|
|
|
|
|
|
|
$opcache_config = opcache_get_configuration();
|
|
|
|
$opcache_status = opcache_get_status();
|
|
|
|
|
|
|
|
uasort($opcache_status['scripts'], function($a, $b) {
|
|
|
|
return $a['hits'] < $b['hits'];
|
|
|
|
});
|
|
|
|
|
|
|
|
function memsize($size, $precision = 3, $space = false)
|
|
|
|
{
|
|
|
|
$i = 0;
|
|
|
|
$val = array(' bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
|
|
|
|
while (($size / 1024) > 1) {
|
|
|
|
$size /= 1024;
|
|
|
|
++$i;
|
|
|
|
}
|
|
|
|
return sprintf("%.{$precision}f%s%s",
|
|
|
|
$size, (($space && $i) ? ' ' : ''), $val[$i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function rc($at = null)
|
|
|
|
{
|
|
|
|
static $i = 0;
|
|
|
|
if ($at !== null) {
|
|
|
|
$i = $at;
|
|
|
|
} else {
|
|
|
|
echo (++$i % 2 ? 'odd' : 'even');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$highlightValueMemoryUsage = round(100 * ($opcache_status['memory_usage']['used_memory'] / $opcache_status['memory_usage']['free_memory']));
|
|
|
|
$highlightValueHits = round($opcache_status['opcache_statistics']['opcache_hit_rate']);
|
|
|
|
$threshold = '';
|
|
|
|
if ($highlightValueMemoryUsage >= 80) {
|
|
|
|
$threshold = ' high';
|
|
|
|
} elseif ($threshold >= 60) {
|
|
|
|
$threshold = ' mid';
|
|
|
|
}
|
2013-04-09 15:44:50 +00:00
|
|
|
$totalFilesCached = count($opcache_status['scripts']);
|
2013-04-08 15:40:06 +00:00
|
|
|
|
|
|
|
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])
|
|
|
|
&& strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest'
|
|
|
|
) {
|
|
|
|
$data = array(
|
|
|
|
'memory_usage' => "{$highlightValueMemoryUsage}%",
|
|
|
|
'hit_rate' => "{$highlightValueHits}%",
|
|
|
|
'used_memory' => memsize($opcache_status['memory_usage']['used_memory']),
|
|
|
|
'free_memory' => memsize($opcache_status['memory_usage']['free_memory']),
|
|
|
|
'wasted_memory' => memsize($opcache_status['memory_usage']['wasted_memory']),
|
2013-04-09 15:44:50 +00:00
|
|
|
'wasted_percentage' => round($opcache_status['memory_usage']['current_wasted_percentage'], 2) . '%',
|
|
|
|
'files_cached' => $totalFilesCached
|
2013-04-08 15:40:06 +00:00
|
|
|
);
|
|
|
|
echo json_encode($data);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2013-04-09 15:44:50 +00:00
|
|
|
$host = (function_exists('gethostname')
|
|
|
|
? gethostname()
|
|
|
|
: (php_uname('n')
|
|
|
|
?: (empty($_SERVER['SERVER_NAME'])
|
|
|
|
? $_SERVER['HOST_NAME']
|
|
|
|
: $_SERVER['SERVER_NAME']
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$validPages = array('overview', 'files');
|
|
|
|
$page = (empty($_GET['page']) || !in_array($_GET['page'], $validPages)
|
|
|
|
? 'overview'
|
|
|
|
: $_GET['page']
|
|
|
|
);
|
|
|
|
|
2013-04-08 15:40:06 +00:00
|
|
|
?>
|
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2013-04-22 11:33:15 +00:00
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
2013-04-09 15:44:50 +00:00
|
|
|
<link href="//fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
|
2013-04-08 15:40:06 +00:00
|
|
|
<style type="text/css">
|
2013-04-09 15:44:50 +00:00
|
|
|
html{font-family:sans-serif;font-size:100%;line-height:1.2;padding:2em;}
|
|
|
|
body {font-size:75%;}
|
2013-04-08 15:40:06 +00:00
|
|
|
.container{overflow:auto;width:100%;position:relative;}
|
|
|
|
#info{margin-right:290px;}
|
|
|
|
#counts{position:absolute;top:0;right:0;width:280px;}
|
|
|
|
#counts div{
|
|
|
|
padding:1em;
|
|
|
|
margin-bottom:1em;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-image: linear-gradient(bottom, #B7C8CC 21%, #D5DEE0 60%, #E0ECEF 80%);
|
|
|
|
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.21, #B7C8CC),color-stop(0.6, #D5DEE0),color-stop(0.8, #E0ECEF));
|
|
|
|
}
|
|
|
|
#counts p {text-align:center;}
|
|
|
|
#counts div.values p {text-align:left;}
|
|
|
|
#counts p span{font-family:'Roboto',sans-serif;}
|
|
|
|
#counts p span.large{display:block;line-height:90%;font-size:800%;}
|
2013-04-09 15:44:50 +00:00
|
|
|
table { margin: 0 0 1em 0; border-collapse: collapse; border-color: #fff; width: 100%; }
|
|
|
|
table caption { text-align: left; font-size: 1.5em; }
|
|
|
|
table tr { background-color: #99D0DF; border-color: #fff; }
|
|
|
|
table th { text-align: left; padding: 6px; background-color: #0BA0C8; color: #fff; border-color: #fff; }
|
|
|
|
table td { padding: 4px 6px; line-height: 1.4em; vertical-align: top; border-color: #fff; }
|
|
|
|
table tr.odd { background-color: #EFFEFF; }
|
|
|
|
table tr.even { background-color: #E0ECEF; }
|
2013-04-08 15:40:06 +00:00
|
|
|
table tr.highlight { background-color: #61C4DF; }
|
|
|
|
.wsnw { white-space: nowrap; }
|
|
|
|
.low{color:#000000;}
|
|
|
|
.mid{color:#550000;}
|
|
|
|
.high{color:#FF0000;}
|
|
|
|
span.showmore span.button {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
color: #333333;
|
|
|
|
background: none repeat scroll 0 0 #DDDDDD;
|
|
|
|
border-radius: 2px 2px 2px 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 12px;
|
|
|
|
line-height: 6px;
|
|
|
|
padding: 0 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
2013-04-09 15:44:50 +00:00
|
|
|
}
|
|
|
|
a.button {
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 110%;
|
|
|
|
color: #292929;
|
|
|
|
padding: 10px 26px;
|
|
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #b4b7b8);
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#b4b7b8));
|
|
|
|
-moz-border-radius: 6px;
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
border: 1px solid #a1a1a1;
|
|
|
|
text-shadow: 0px -1px 0px rgba(000,000,000,0), 0px 1px 0px rgba(255,255,255,0.4);
|
|
|
|
}
|
2013-04-08 15:40:06 +00:00
|
|
|
span.showmore span.button:hover {
|
|
|
|
background-color: #CCCCCC;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
#info{margin-right:auto;}
|
|
|
|
#counts{position:relative;display:block;margin-bottom:2em;width:100%;}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function(){
|
2013-04-09 15:44:50 +00:00
|
|
|
<?php if ($page == 'overview'): ?>
|
2013-04-08 15:40:06 +00:00
|
|
|
var realtime = false;
|
|
|
|
function ping() {
|
|
|
|
$.ajax({
|
|
|
|
url: "#",
|
|
|
|
dataType: "json",
|
|
|
|
cache: false,
|
|
|
|
success: function(data){
|
|
|
|
$('.realtime').each(function(){
|
|
|
|
$(this).text(data[$(this).attr('data-value')]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
$('#toggleRealtime').click(function(){
|
|
|
|
if (realtime === false) {
|
|
|
|
realtime = setInterval(function(){ping()}, 5000);
|
|
|
|
$(this).text('Disable real-time update of stats');
|
|
|
|
} else {
|
|
|
|
clearInterval(realtime);
|
|
|
|
realtime = false;
|
|
|
|
$(this).text('Enable real-time update of stats');
|
|
|
|
}
|
|
|
|
});
|
2013-04-09 15:44:50 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ($page == 'files'): ?>
|
2013-04-08 15:40:06 +00:00
|
|
|
$('span.showmore span.button').click(function(){
|
|
|
|
if ($(this).next().is(":visible")) {
|
|
|
|
$(this).next().hide();
|
|
|
|
$(this).css('padding-top', '0').text('…');
|
|
|
|
} else {
|
|
|
|
$(this).next().show();
|
|
|
|
$(this).css('padding-top', '2px').text('«');
|
|
|
|
}
|
|
|
|
});
|
2013-04-09 15:44:50 +00:00
|
|
|
<?php endif; ?>
|
2013-04-08 15:40:06 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2013-04-09 15:44:50 +00:00
|
|
|
<div style="text-align:center;margin-bottom:2em;">
|
|
|
|
<p>
|
|
|
|
<a href="?page=overview" class="button" style="margin-right:2em;">Overview</a>
|
|
|
|
<a href="?page=files" class="button">File usage</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if ($page == 'overview'): ?>
|
|
|
|
<h2>Overview</h2>
|
|
|
|
<div class="container">
|
|
|
|
<div id="counts">
|
|
|
|
<div>
|
|
|
|
<p><span class="large realtime <?php echo $threshold; ?>" data-value="memory_usage"><?php echo $highlightValueMemoryUsage; ?>%</span> memory usage</p>
|
2013-04-08 15:40:06 +00:00
|
|
|
</div>
|
2013-04-09 15:44:50 +00:00
|
|
|
<div>
|
|
|
|
<p><span class="large realtime" data-value="hit_rate"><?php echo $highlightValueHits; ?>%</span> hit rate</p>
|
|
|
|
</div>
|
|
|
|
<div class="values">
|
|
|
|
<p><b>used memory:</b> <span class="realtime" data-value="used_memory"><?php echo memsize($opcache_status['memory_usage']['used_memory']); ?></span></p>
|
|
|
|
<p><b>free memory:</b> <span class="realtime" data-value="free_memory"><?php echo memsize($opcache_status['memory_usage']['free_memory']); ?></span></p>
|
|
|
|
<p><b>wasted memory:</b> <span class="realtime" data-value="wasted_memory"><?php echo memsize($opcache_status['memory_usage']['wasted_memory']); ?></span> (<span class="realtime" data-value="wasted_percentage"><?php echo round($opcache_status['memory_usage']['current_wasted_percentage'], 2); ?>%</span>)</p>
|
|
|
|
<p><b>number of cached files:</b> <span class="realtime" data-value="files_cached"><?php echo $totalFilesCached; ?></span></p>
|
2013-04-08 15:40:06 +00:00
|
|
|
</div>
|
2013-04-09 15:44:50 +00:00
|
|
|
<br />
|
|
|
|
<p><a href="#" id="toggleRealtime">Enable real-time update of stats</a></p>
|
2013-04-08 15:40:06 +00:00
|
|
|
</div>
|
2013-04-09 15:44:50 +00:00
|
|
|
<div id="info">
|
|
|
|
|
2013-04-08 15:40:06 +00:00
|
|
|
<table>
|
2013-04-09 15:44:50 +00:00
|
|
|
<tr><th colspan="2">General info</th></tr>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td>Zend OPcache</td>
|
|
|
|
<td><?php echo $opcache_config['version']['version']; ?></td>
|
|
|
|
</tr>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td>PHP</td>
|
|
|
|
<td><?php echo phpversion(); ?></td>
|
|
|
|
</tr>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td>Host</td>
|
|
|
|
<td><?php echo $host; ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php if (!empty($_SERVER['SERVER_SOFTWARE'])): ?>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td>Server Software</td>
|
|
|
|
<td><?php echo $_SERVER['SERVER_SOFTWARE']; ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php endif; ?>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td>Start time</td>
|
|
|
|
<td><?php echo date_format(date_create("@{$opcache_status['opcache_statistics']['start_time']}"), 'Y-m-d H:i:s'); ?></td>
|
|
|
|
</tr>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td>Last reset</td>
|
|
|
|
<td><?php echo ($opcache_status['opcache_statistics']['last_restart_time'] == 0
|
|
|
|
? '<em>never</em>'
|
|
|
|
: date_format(date_create("@{$opcache_status['opcache_statistics']['last_restart_time']}"), 'Y-m-d H:i:s')); ?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr><th colspan="2">Directives</th></tr>
|
|
|
|
<?php rc(0); foreach ($opcache_config['directives'] as $d => $v): ?>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td><span title="<?php echo $d; ?>"><?php echo str_replace(array('opcache.', '_'), array('', ' '), $d); ?></span></td>
|
|
|
|
<td><?php echo (is_bool($v)
|
|
|
|
? ($v ? '<i>true</i>' : '<i>false</i>')
|
|
|
|
: $v); ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
2013-04-08 15:40:06 +00:00
|
|
|
</table>
|
2013-04-09 15:44:50 +00:00
|
|
|
<br style="clear:both;" />
|
2013-04-08 15:40:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-04-09 15:44:50 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ($page == 'files'): ?>
|
|
|
|
<h2>File usage</h2>
|
|
|
|
<div class="container">
|
|
|
|
<h3><?php echo $totalFilesCached; ?> file<?php echo ($totalFilesCached == 1 ? '' : 's'); ?> cached</h3>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Script</th>
|
|
|
|
<th>Details</th>
|
|
|
|
</tr>
|
|
|
|
<?php rc(0); foreach ($opcache_status['scripts'] as $s): ?>
|
|
|
|
<tr class="<?php rc(); ?>">
|
|
|
|
<td><?php
|
|
|
|
$base = basename($s['full_path']);
|
|
|
|
$parts = array_filter(explode(DIRECTORY_SEPARATOR, dirname($s['full_path'])));
|
|
|
|
if (!empty($settings['compress_path_threshold'])) {
|
|
|
|
echo '<span class="showmore"><span class="button">…</span><span class="text" style="display:none;">' . DIRECTORY_SEPARATOR;
|
|
|
|
echo join(DIRECTORY_SEPARATOR, array_slice($parts, 0, $settings['compress_path_threshold'])) . DIRECTORY_SEPARATOR;
|
|
|
|
echo '</span>';
|
|
|
|
echo join(DIRECTORY_SEPARATOR, array_slice($parts, $settings['compress_path_threshold']));
|
|
|
|
if (count($parts) > $settings['compress_path_threshold']) {
|
|
|
|
echo DIRECTORY_SEPARATOR;
|
|
|
|
}
|
|
|
|
echo "{$base}</span>";
|
|
|
|
} else {
|
|
|
|
echo htmlentities($s['full_path'], ENT_COMPAT, 'UTF-8');
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<p>
|
|
|
|
hits: <?php echo $s['hits']; ?>,
|
|
|
|
memory: <?php echo memsize($s['memory_consumption']); ?><br />
|
|
|
|
last used: <?php echo date_format(date_create($s['last_used']), 'Y-m-d H:i:s'); ?>
|
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2013-04-08 15:40:06 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|