| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/django_uwsgi/templates/uwsgi/ |
Upload File : |
{% extends "wagtailadmin/base.html" %}
{% load i18n %}
{% block titletag %}{% trans "uWSGI Status" %}{% endblock %}
{% block bodyclass %}uwsgi{% endblock %}
{% block content %}
<ul class="breadcrumb">
<li class="home"><a href="{% url 'wagtailadmin_home' %}" class="icon icon-home text-replace">{% trans 'Home' %}</a></li>
<li><a href="#">{% trans "Settings" %}</a></li>
<li><a href="{{ page.url }}">{% trans "uWSGI Status" %}</a></li>
</ul>
{% if unavailable %}
{% trans 'ERROR: uWSGI is not available!' as uwsgi_header %}
{% include "wagtailadmin/shared/header.html" with title=uwsgi_header icon="cogs" %}
{% else %}
{% trans "uWSGI Status" as uwsgi_header %}
{% include "wagtailadmin/shared/header.html" with title=uwsgi_header subtitle=version icon="cogs" tabbed="true" merged="true" %}
<ul class="tab-nav merged">
<li class="active"><a href="#stats" class="active">{% trans "Information" %}</a></li>
<li><a href="#options">{% trans "Options" %}</a></li>
<li><a href="#magic">{% trans "Magic Table" %}</a></li>
<li><a href="#workers" class="errors" data-count="{{ uwsgi.numproc }}">{% trans "Workers" %}</a></li>
<li><a href="#applications">{% trans "Applications" %}</a></li>
{% if uwsgi.spooler_jobs %}
<li><a href="#spooler">{% trans "Spooler" %}</a></li>
{% endif %}
<li><a href="#actions">{% trans "Actions" %}</a></li>
</ul>
<div class="tab-content nice-padding">
<section id="stats" class="active">
<header class="nice-padding"><h2>{% trans 'Information' %}</h2></header>
<table class="listing chooser">
<thead>
<tr>
<th>{% trans "Option" %}</th>
<th>{% trans "Value" %}</th>
</tr>
</thead>
<tbody>
{% for key, value in stats %}
<tr>
<td class="title" scope="row">{{ key }}</td>
<td>{{ value }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
<section id="options">
<header class="nice-padding">
<h2>{% trans 'Options' %} (<a href="http://uwsgi-docs.readthedocs.org/en/latest/Options.html">read docs</a>)</h2>
</header>
<table class="listing chooser">
<thead>
<tr>
<th>{% trans "Option" %}</th>
<th>{% trans "Value" %}</th>
</tr>
</thead>
<tbody>
{% for key, value in uwsgi.opt.items %}
<tr>
<td class="title" scope="row">
<h2>
<a href="http://uwsgi-docs.readthedocs.org/en/latest/Options.html#{{ key }}">{{ key }}</a>
</h2>
</td>
{# uWSGI allows to use options without values if value = true #}
<td>{% if value %}{{ value }}{% else %}true{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
<section id="magic">
<header class="nice-padding">
<h2>{% trans 'Magic table' %} (<a href="http://uwsgi-docs.readthedocs.io/en/latest/Configuration.html#magic-variables">read docs</a>)</h2>
</header>
<table class="listing chooser">
<thead>
<tr>
<th>{% trans "Option" %}</th>
<th>{% trans "Value" %}</th>
</tr>
</thead>
<tbody>
{% for key, value in uwsgi.magic_table.items %}
<tr>
<td class="title" scope="row">
<h2>
{{ key }}
</h2>
</td>
<td>{{ value }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
<section id="workers">
<header class="nice-padding">
<h2>{% trans 'Workers' %}</h2>
</header>
<table class="listing chooser">
<thead>
<tr>
<th>{% trans "id" %}</th>
<th>{% trans "pid" %}</th>
<th>{% trans "status" %}</th>
<th>{% trans "requests" %}</th>
<th>{% trans "exceptions" %}</th>
<th>{% trans "signals" %}</th>
<th>{% trans "running time(ms)" %}</th>
<th>{% trans "avg response time(ms)" %}</th>
<th>{% trans "load" %}</th>
<th>{% trans "last spawn" %}</th>
<th>{% trans "respawn count" %}</th>
{% if 'memory-report' in uwsgi.opt %}
<th>{% trans "address space (vsz)" %}</th>
<th>{% trans "resident memory (rss)" %}</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for w in workers %}
<tr>
<td>{{ w.id }}</td>
<td>{{ w.pid }}</td>
<td>{{ w.status }}</td>
<td>{{ w.requests }}</td>
<td>{{ w.exceptions }}</td>
<td>{{ w.signals }}</td>
<td>{{ w.running_time }}</td>
<td>{{ w.avg_rt }}</td>
<td>{{ w.load|floatformat:2 }} %</td>
<td>{{ w.last_spawn }}</td>
<td>{{ w.respawn_count }}</td>
{% if 'memory-report' in uwsgi.opt %}
<td>{{ w.vsz|filesizeformat }}</td>
<td>{{ w.rss|filesizeformat }}</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</section>
<section id="applications">
<header class="nice-padding">
<h2>{% trans 'Applications' %}</h2>
</header>
<table class="listing chooser">
<thead>
<tr>
<th>{% trans "#" %}</th>
<th>{% trans "modifier1" %}</th>
<th>{% trans "mountpoint" %}</th>
<th>{% trans "interpreter" %}</th>
<th>{% trans "callable" %}</th>
<th>{% trans "chdir" %}</th>
<th>{% trans "requests" %}</th>
<th>{% trans "exceptions" %}</th>
</tr>
</thead>
<tbody>
{% for w in uwsgi.workers %}
{% for app in w.apps %}
<tr>
<td>{{ app.id }}</td>
<td>{{ app.modifier1 }}</td>
<td>{{ app.mountpoint }}</td>
<td>{{ app.interpreter }}</td>
<td>{{ app.callable }}</td>
<td>{{ app.chdir }}</td>
<td>{{ app.requests }}</td>
<td>{{ app.exceptions }}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</section>
{% if uwsgi.spooler_jobs %}
<section id="spooler">
<header class="nice-padding">
<h2>{% trans 'Spooler' %}</h2>
</header>
<table class="listing chooser">
<thead>
<tr>
<th>{% trans "job filename" %}</th>
<th>{% trans "environment" %}</th>
</tr>
</thead>
<tbody>
{% for job in jobs %}
<tr>
<td align="left">{{ job.file }}</td>
<td align="left">{{ job.env }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
{% endif %}
<section id="actions">
<header class="nice-padding"><h2>{% trans 'Actions' %}</h2></header>
<form action="{% url 'uwsgi_signal' %}" method="post">
{% csrf_token %}
<ul class="fields">
<li class="required">
<div class="field char_field text_input">
<label for="signal_number">{% trans 'Signal number' %}</label>
<div class="field-content">
<div class="input">
<input id="signal_number" type="text" size="3" name="signal_number" required>
<span></span>
</div>
<p class="help">{% trans 'Signal number' %}</p>
</div>
</div>
</li>
<li>
<input type="submit" class="button" value="{% trans 'Send' %}">
</li>
</ul>
</form>
<form action="{% url 'uwsgi_log' %}" method="post">
{% csrf_token %}
<ul class="fields">
<li class="required">
<div class="field char_field text_input">
<label for="log_message">{% trans 'Log message' %}</label>
<div class="field-content">
<div class="input">
<input id="log_message" type="text" size="72" name="log_message" required>
<span></span>
</div>
<p class="help">{% trans 'Log message' %}</p>
</div>
</div>
</li>
<li>
<input type="submit" class="button" value="{% trans 'Send' %}">
</li>
</ul>
</form>
</section>
</div>
<footer>
<ul>
{% if uwsgi.masterpid %}
<li class="actions">
<a class="button no bicolor icon icon-repeat" href="{% url 'uwsgi_reload' %}">{% trans 'Gracefully reload uWSGI' %}</a>
</li>
<li class="actions preview">
<a class="button bicolor icon icon-bin" href="{% url 'uwsgi_cache_clear' %}">{% trans 'Clear uWSGI cache' %}</a>
</li>
{% endif %}
<li class="meta">
<p class="modified">
<a target="_blank" href="https://github.com/unbit/uwsgi" class="underlined">{% trans "uWSGI version" %} {{ uwsgi.version }}</a> running @ {{ uwsgi.hostname }}</p>
</li>
</ul>
</footer>
{% endif %}
{% endblock %}