Enhance tooltip for CPU standard deviation display in dashboard
Some checks failed
CI / ci (push) Has been cancelled

- Added a tooltip to the CPU standard deviation metric in the dashboard to provide a clearer explanation of the calculation formula, improving user understanding of the displayed data.
This commit is contained in:
2026-02-12 19:27:33 +03:00
parent 572274333c
commit 3491ed168d

View File

@@ -13,7 +13,9 @@
</div> </div>
<div id="currentCpuStdBlock" class="flex items-center gap-1 text-xs"> <div id="currentCpuStdBlock" class="flex items-center gap-1 text-xs">
<div class="w-3 h-0.5 bg-error/60"></div> <div class="w-3 h-0.5 bg-error/60"></div>
<span class="text-error/60">±0.5σ: <span id="currentCpuStd">0</span>%</span> <span class="tooltip tooltip-top text-error/60 cursor-help" data-tip="σ = √(Σ(xᵢμ)²/n)" aria-label="Формула расчёта ±0.5σ">
<span class="text-error/60">±0.5σ: <span id="currentCpuStd">0</span>%</span>
</span>
</div> </div>
</div> </div>
</div> </div>