From cc05b0886bf7db554dd12d53fd2c9c3dc4f1e323 Mon Sep 17 00:00:00 2001 From: iamkubi Date: Sat, 19 Jun 2021 12:10:02 -0700 Subject: [PATCH] Fix CPU tooltip on server create page (#3416) CPU usage is based on threads, however the create server page incorrectly specifies physical cores in the help text. Relocate a BlockIO blurb at the end of the CPU usage text which seems to be in the wrong place. --- resources/views/admin/servers/new.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/admin/servers/new.blade.php b/resources/views/admin/servers/new.blade.php index af1db5056..4fdf158bf 100644 --- a/resources/views/admin/servers/new.blade.php +++ b/resources/views/admin/servers/new.blade.php @@ -154,7 +154,7 @@ % -

If you do not want to limit CPU usage, set the value to 0. To determine a value, take the number of physical cores and multiply it by 100. For example, on a quad core system (4 * 100 = 400) there is 400% available. To limit a server to using half of a single core, you would set the value to 50. To allow a server to use up to two physical cores, set the value to 200. BlockIO should be a value between 10 and 1000. Please see this documentation for more information about it.

+

If you do not want to limit CPU usage, set the value to 0. To determine a value, take the number of threads and multiply it by 100. For example, on a quad core system without hyperthreading (4 * 100 = 400) there is 400% available. To limit a server to using half of a single thread, you would set the value to 50. To allow a server to use up to two threads, set the value to 200.

@@ -208,7 +208,7 @@
-

Advanced: The IO performance of this server relative to other running containers on the system. Value should be between 10 and 1000.

+

Advanced: The IO performance of this server relative to other running containers on the system. Value should be between 10 and 1000. Please see this documentation for more information about it.