1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<div class="jp-RenderedHTMLCommon jp-RenderedHTML jp-mod-trusted jp-OutputArea-output">
<div style="width: 24px; height: 24px; background-color: #e1e1e1; border: 3px solid #9D9D9D; border-radius: 5px; position: absolute;">
</div>
<div style="margin-left: 48px;">
<h3 style="margin-bottom: 0px; margin-top: 0px;">{{ type }}</h3>
<p style="color: #9D9D9D; margin-bottom: 0px;">{{ name }}</p>
<table style="width: 100%; text-align: left;">
<tr>
<td style="text-align: left;">
<strong>Dashboard:</strong> <a href="{{ dashboard_link }}" target="_blank">{{ dashboard_link }}</a>
</td>
<td style="text-align: left;">
<strong>Workers:</strong> {{ workers | length }}
</td>
</tr>
<tr>
<td style="text-align: left;">
<strong>Total threads:</strong> {{ workers.values() | map(attribute='nthreads') | sum }}
</td>
<td style="text-align: left;">
<strong>Total memory:</strong> {{ workers.values() | map(attribute='memory_limit') | sum | format_bytes }}
</td>
</tr>
{% if cluster_status %}
{{ cluster_status }}
{% endif %}
</table>
<details>
<summary style="margin-bottom: 20px;">
<h3 style="display: inline;">Scheduler Info</h3>
</summary>
{{ scheduler_info_repr }}
</details>
</div>
</div>
|