~ubuntu-branches/ubuntu/trusty/uwsgi/trusty

« back to all changes in this revision

Viewing changes to uwsgicc/templates/index.html

  • Committer: Package Import Robot
  • Author(s): Janos Guljas
  • Date: 2012-02-13 03:43:28 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120213034328-d02hz8m5pon6kaxf
Tags: 1.0.3+dfsg-1
* New upstream version.
* Adjust rack plugin LD_RUN_PATH patch.
* Adjust patch for uWSGI Control Center jQuery links in templates.
* Remove '-fno-strict-aliasing' CFLAG patch as it is implemented upstream.
* Remove fix indentation of uwsgidecorators_py patch as implemented upstream.
* Adjust init scripts to use top-bottom options order, as --inherit option
  is not working as in earlier versions. 
* Update debian/copyright file.
* Add LSB Description field to debian/uwsgi.init.d.
* Set Architecture to "all" for binary package uwsgi-extra because
  it contains no architecture dependent files.
* Change uwsgi description. (Closes: #640698)
* New binary packages:
  - uwsgi-plugin-carbon
  - uwsgi-plugin-graylog2
  - uwsgi-plugin-logsocket
  - uwsgi-plugin-probeconnect
  - uwsgi-plugin-probepg
  - uwsgi-plugin-rrdtool
  - uwsgi-plugin-rsyslog
  - uwsgi-plugin-signal
  - uwsgi-plugin-symcall
  - uwsgi-plugin-syslog
* python-uwsgidecorators:
  - fix binary-install rule to call dh_python2
  - remove debian/source.lintian-overrides
* uwsgi-plugin-jvm-openjdk-6:
  - fix FTBFS on armel and powerpc (Closes: #656280)
* uwsgi-plugin-python:
  - document issue "ImportError: No module named site" when using
    virtualenv with Python 2.6 in README.Debian (Closes: #654333)
* Adjust debian/watch uversionmangle option.
* Repack upstram source to remove minimized jQuery and jQuery UI JavaScript
  libraries:
  - add get-orig-source rule to debian/rules
  - append +dfsg to upstream version
  - update debian/watch with dversionmangle option

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
5
<title>uWSGI {{uwsgi.version}} Control Center</title>
6
6
 
7
 
<link href="{{ url_for('static', filename='css/ui-lightness/jquery-ui-1.8.7.custom.css') }}" rel="stylesheet" type="text/css"/>
 
7
<link href="{{ url_for('static', filename='css/custom-theme/jquery-ui-1.8.14.custom.css') }}" rel="stylesheet" type="text/css"/>
8
8
<script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script>
9
9
<script src="{{ url_for('static', filename='js/jquery-ui.min.js') }}"></script>
10
10
 
174
174
<a name="top"></a>
175
175
<h1>uWSGI <span class="small">{{uwsgi.version}}</span> Control Center</h1>
176
176
<div class="anchor">
177
 
<a href="#information">information</a> | <a href="#options">options</a> | <a href="#logs">logs</a> | <a href="#signals">signals</a> | <a href="#workers">workers</a> | <a href="#rpc">rpc</a> {% if uwsgi.cluster() %}| <a href="#cluster">cluster</a>{% endif %}
 
177
<a href="#information">information</a> | <a href="#options">options</a> | <a href="#logs">logs</a> | <a href="#signals">signals</a> | <a href="#workers">workers</a> | <a href="#applications">applications</a> | <a href="#rpc">rpc</a> {% if uwsgi.cluster() %}| <a href="#cluster">cluster</a>{% endif %}
178
178
</div>
179
179
 
180
180
{% with messages = get_flashed_messages() %}
264
264
<a name="workers"></a>
265
265
<h3>Workers</h3>
266
266
<div class="info">
267
 
<table width="400">
 
267
<table width="600">
268
268
<tr>
269
269
    <th>#</th>
270
270
    <th>pid</th>
 
271
    <th>status</th>
271
272
    <th>requests</th>
272
273
    <th>exceptions</th>
 
274
    <th>signals</th>
 
275
    <th>running time</th>
 
276
    <th>avg response time</th>
 
277
{% if 'memory-report' in uwsgi.opt %}
 
278
    <th>rss</th>
 
279
    <th>vsz</th>
 
280
{% endif %}
273
281
    <th># respawn</th>
274
282
</tr>
275
283
{% for w in uwsgi.workers() %}
276
284
        <tr class="{{ loop.cycle('odd', 'even') }}">
277
285
                <td>{{w.id}}</td>
278
286
                <td>{{w.pid}}</td>
 
287
                <td>{{w.status}}</td>
279
288
                <td>{{w.requests}}</td>
280
289
                <td>{{w.exceptions}}</td>
 
290
                <td>{{w.signals}}</td>
 
291
                <td>{{w.running_time/1000}}</td>
 
292
                <td>{{w.avg_rt/1000}}</td>
 
293
{% if 'memory-report' in uwsgi.opt %}
 
294
                <td>{{(w.rss/1000/1000)|round(2,'floor')}}MB</td>
 
295
                <td>{{(w.vsz/1000/1000)|round(2,'floor')}}MB</td>
 
296
{% endif %}
281
297
                <td>{{w.respawn_count}}</td>
282
298
        </tr>
283
299
{% endfor %}
289
305
 
290
306
</div>
291
307
 
 
308
<a name="applications"></a>
 
309
<h3>Applications</h3>
 
310
<div class="info">
 
311
{% for w in uwsgi.workers() %}
 
312
worker {{w.id}}
 
313
<table width="600">
 
314
<tr>
 
315
    <th>#</th>
 
316
    <th>modifier1</th>
 
317
    <th>mountpoint</th>
 
318
    <th>interpreter</th>
 
319
    <th>callable</th>
 
320
    <th>chdir</th>
 
321
    <th>requests</th>
 
322
    <th>exceptions</th>
 
323
</tr>
 
324
{% for app in w.apps %}
 
325
        <tr class="{{ loop.cycle('odd', 'even') }}">
 
326
                <td>{{app.id}}</td>
 
327
                <td>{{app.modifier1}}</td>
 
328
                <td>{{app.mountpoint}}</td>
 
329
                <td>{{app.interpreter}}</td>
 
330
                <td>{{app.callable}}</td>
 
331
                <td>{{app.chdir}}</td>
 
332
                <td>{{app.requests}}</td>
 
333
                <td>{{app.exceptions}}</td>
 
334
        </tr>
 
335
{% endfor %}
 
336
</table>
 
337
<br/><br/>
 
338
{% endfor %}
 
339
<br/>
 
340
    <div class="anchor">
 
341
    <a href="#top">back to top</a>
 
342
    </div>
 
343
 
 
344
</div>
 
345
 
 
346
 
292
347
<a name="rpc"></a>
293
348
<div id="rpc_tabs" class="info">
294
349