Show
Ignore:
Timestamp:
11/01/2007 09:59:09 AM (13 months ago)
Author:
PugFish
Message:

Added memory usage to Benchmark and Profiler

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/views/kohana_profiler.php

    r917 r939  
    8383                        <th><?php echo Kohana::lang('profiler.benchmarks') ?></th> 
    8484                        <th class="kp-column">Time</th> 
     85                        <th class="kp-column">Memory</th> 
    8586                </tr> 
    8687<?php 
     
    8990$benchmarks = array_slice($benchmarks, 1) + array_slice($benchmarks, 0, 1); 
    9091 
    91 foreach ($benchmarks as $name => $time): 
     92foreach ($benchmarks as $name => $benchmark): 
    9293 
    9394        $name = ucwords(str_replace(array('_', '-'), ' ', $name)); 
     
    9697                        <tr<?php echo text::alternate('', ' class="kp-altrow"') ?>> 
    9798                                <td><?php echo $name ?></td> 
    98                                 <td class="kp-column kp-data"><?php echo number_format($time, 4) ?></td> 
     99                                <td class="kp-column kp-data"><?php echo number_format($benchmark['time'], 4) ?></td> 
     100                                <td class="kp-column kp-data"><?php echo text::bytes($benchmark['memory'], 'MB') ?></td> 
    99101                        </tr> 
    100102<?php 
     
    108110                <tr> 
    109111                        <th><?php echo Kohana::lang('profiler.queries') ?> (<?php echo ($queries == FALSE ? '0' : count($queries)) ?>)</th> 
     112                        <th class="kp-column">Time</th> 
    110113                        <th class="kp-column">Rows</th> 
    111                         <th class="kp-column">Time</th> 
    112114                </tr> 
    113115<?php 
     
    134136                <tr<?php echo text::alternate('', ' class="kp-altrow"') ?>> 
    135137                        <td><?php echo html::specialchars($query['query']) ?></td> 
     138                        <td class="kp-column kp-data"><?php echo number_format($query['time'], 4) ?></td> 
    136139                        <td class="kp-column kp-data"><?php echo $query['rows'] ?></td> 
    137                         <td class="kp-column kp-data"><?php echo number_format($query['time'], 4) ?></td> 
    138140                </tr> 
    139141<?php