Sentry/assets/twig/cpu.twig
Gregory Ballantine c878447c45
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Changed to using a tabbed layout instead of separate pages for everything
2022-10-28 01:06:09 -04:00

39 lines
1019 B
Twig

<header class="row">
<div class="columns twelve u-text-center">
<h1>Sentry CPU Info</h1>
</div>
</header>
<section class="row">
<article class="columns eight">
<h5>CPU Model: <span id="cpuInfo">Random CPU</span></h5>
<table class="hardware-info u-full-width">
<tbody>
<tr>
<td>Physical cores</td>
<td><span id="cpuCores">2</span> cores</td>
</tr>
<tr>
<td>Logical threads</td>
<td><span id="cpuThreads">4</span> threads</td>
</tr>
<tr>
<td>Base clock</td>
<td><span id="cpuClockBase">2.0</span>Ghz</td>
</tr>
<tr>
<td>Boost clock</td>
<td><span id="cpuClockBoost">2.0</span>Ghz</td>
</tr>
</tbody>
</table>
<p>CPU temperature: <span id="cpuTemp">12</span>&deg;C</p>
</article>
<article class="columns four">
<div id="cpuTempDisplay" class="tempGauge">
<div class="tempGaugeFill"></div>
</div>
</article>
</section>