Skip to content

Commit 86de737

Browse files
committed
Add notes about IO/CPU Threads
1 parent d77184a commit 86de737

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

resources/views/admin/servers/new.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,17 @@
162162
</div>
163163
<div class="form-group col-sm-4">
164164
<label for="pThreads">CPU Threads</label>
165-
<div class="input-group">
165+
<div>
166166
<input type="text" class="form-control" value="{{ old('threads') }}" name="threads" id="pThreads" />
167-
<span class="input-group-addon"></span>
168167
</div>
168+
<p class="text-muted small"><strong>Advanced:</strong> Enter the specific CPU cores that this process can run on, or leave blank to allow all cores. This can be a single number, or a comma seperated list. Example: <code>0</code>, <code>0-1,3</code>, or <code>0,1,3,4</code>.</p>
169169
</div>
170170
<div class="form-group col-sm-4">
171171
<label for="pIO">Block IO Weight</label>
172-
<div class="input-group">
172+
<div>
173173
<input type="text" class="form-control" value="{{ old('io', 500) }}" name="io" id="pIO" />
174-
<span class="input-group-addon">I/O</span>
175174
</div>
175+
<p class="text-muted small"><strong>Advanced</strong>: The IO performance of this server relative to other <em>running</em> containers on the system. Value should be between <code>10</code> and <code>1000</code>.</code></p>
176176
</div>
177177
</div>
178178
<div class="box-footer no-border no-pad-top no-pad-bottom">

resources/views/admin/servers/view/build.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@
5555
</div>
5656
<div class="form-group">
5757
<label for="threads" class="control-label">CPU Threads</label>
58-
<div class="input-group">
58+
<div>
5959
<input type="text" name="threads" class="form-control" value="{{ old('threads', $server->threads) }}"/>
60-
<span class="input-group-addon"></span>
6160
</div>
61+
<p class="text-muted small"><strong>Advanced:</strong> Enter the specific CPU cores that this process can run on, or leave blank to allow all cores. This can be a single number, or a comma seperated list. Example: <code>0</code>, <code>0-1,3</code>, or <code>0,1,3,4</code>.</p>
6262
</div>
6363
<div class="form-group">
6464
<label for="io" class="control-label">Block IO Proportion</label>
6565
<div>
6666
<input type="text" name="io" class="form-control" value="{{ old('io', $server->io) }}"/>
6767
</div>
68-
<p class="text-muted small">Changing this value can have negative effects on all containers on the system. We strongly recommend leaving this value as <code>500</code>.</p>
68+
<p class="text-muted small"><strong>Advanced</strong>: The IO performance of this server relative to other <em>running</em> containers on the system. Value should be between <code>10</code> and <code>1000</code>.</code></p>
6969
</div>
7070
<div class="form-group">
7171
<label for="cpu" class="control-label">Disk Space Limit</label>

0 commit comments

Comments
 (0)