mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
31 lines
969 B
Twig
31 lines
969 B
Twig
{{ header('PHP Processes') }}
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h3>PHP processes</h3>
|
|
<div class="linkbox">
|
|
<a href="?action=process_info&view=histogram" class="brackets">Performance histograms</a>
|
|
</div>
|
|
</div>
|
|
<table class="process_info">
|
|
<colgroup>
|
|
<col class="process_info_pid" />
|
|
<col class="process_info_data" />
|
|
</colgroup>
|
|
<tr class="colhead_dark">
|
|
<td colspan="2">
|
|
{{ proc|length }} process{{ proc|length|plural('es') }} as of {{ 'now'|date("Y-m-d H:i:s") }}
|
|
</td>
|
|
</tr>
|
|
{% for pid, info in proc %}
|
|
<tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
|
|
<td style="vertical-align: top;">{{ pid }}</td>
|
|
<td>
|
|
<pre>{{ info|json_encode(constant('JSON_PRETTY_PRINT')) }}</pre>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<br />
|
|
{{ footer() }}
|