RFE #723325
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-06-02 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
|
* server_status.php3: RFE #723325 (Move total query statistics).
|
||||||
|
|
||||||
2003-06-02 Michal Cihar <nijel@users.sourceforge.net>
|
2003-06-02 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* libraries/display_tbl.lib.php3, lang/*: Better text on button for
|
* libraries/display_tbl.lib.php3, lang/*: Better text on button for
|
||||||
executing bookmark (bug #745993).
|
executing bookmark (bug #745993).
|
||||||
|
@@ -146,8 +146,27 @@ unset($tmp_array);
|
|||||||
<br />
|
<br />
|
||||||
<li>
|
<li>
|
||||||
<!-- Queries -->
|
<!-- Queries -->
|
||||||
<?php echo sprintf($strQueryStatistics, number_format($serverStatus['Questions'], 0, $number_decimal_separator, $number_thousands_separator)); ?><br />
|
<?php echo sprintf($strQueryStatistics, number_format($serverStatus['Questions'], 0, $number_decimal_separator, $number_thousands_separator)) . "\n"; ?>
|
||||||
<table border="0">
|
<table border="0">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<br />
|
||||||
|
<table border="0" align="right">
|
||||||
|
<tr>
|
||||||
|
<th> <?php echo $strTotalUC; ?> </th>
|
||||||
|
<th> ø <?php echo $strPerHour; ?> </th>
|
||||||
|
<th> ø <?php echo $strPerMinute; ?> </th>
|
||||||
|
<th> ø <?php echo $strPerSecond; ?> </th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format($serverStatus['Questions'], 0, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
||||||
|
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format(($serverStatus['Questions'] * 3600 / $serverStatus['Uptime']), 2, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
||||||
|
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format(($serverStatus['Questions'] * 60 / $serverStatus['Uptime']), 2, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
||||||
|
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format(($serverStatus['Questions'] / $serverStatus['Uptime']), 2, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
<table border="0">
|
<table border="0">
|
||||||
@@ -191,26 +210,6 @@ unset($useBgcolorOne);
|
|||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td colspan="2">
|
|
||||||
<br />
|
|
||||||
<table border="0" align="right">
|
|
||||||
<tr>
|
|
||||||
<th> <?php echo $strTotalUC; ?> </th>
|
|
||||||
<th> ø <?php echo $strPerHour; ?> </th>
|
|
||||||
<th> ø <?php echo $strPerMinute; ?> </th>
|
|
||||||
<th> ø <?php echo $strPerSecond; ?> </th>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format($serverStatus['Questions'], 0, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
|
||||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format(($serverStatus['Questions'] * 3600 / $serverStatus['Uptime']), 2, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
|
||||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format(($serverStatus['Questions'] * 60 / $serverStatus['Uptime']), 2, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
|
||||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right"> <?php echo number_format(($serverStatus['Questions'] / $serverStatus['Uptime']), 2, $number_decimal_separator, $number_thousands_separator); ?> </td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
<?php
|
<?php
|
||||||
|
Reference in New Issue
Block a user