Add notes about IO/CPU Threads

This commit is contained in:
Dane Everitt 2020-04-03 14:43:15 -07:00
parent d77184aeb8
commit 86de7372a8
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 7 additions and 7 deletions

View File

@ -162,17 +162,17 @@
</div>
<div class="form-group col-sm-4">
<label for="pThreads">CPU Threads</label>
<div class="input-group">
<div>
<input type="text" class="form-control" value="{{ old('threads') }}" name="threads" id="pThreads" />
<span class="input-group-addon"></span>
</div>
<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>
</div>
<div class="form-group col-sm-4">
<label for="pIO">Block IO Weight</label>
<div class="input-group">
<div>
<input type="text" class="form-control" value="{{ old('io', 500) }}" name="io" id="pIO" />
<span class="input-group-addon">I/O</span>
</div>
<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>
</div>
</div>
<div class="box-footer no-border no-pad-top no-pad-bottom">

View File

@ -55,17 +55,17 @@
</div>
<div class="form-group">
<label for="threads" class="control-label">CPU Threads</label>
<div class="input-group">
<div>
<input type="text" name="threads" class="form-control" value="{{ old('threads', $server->threads) }}"/>
<span class="input-group-addon"></span>
</div>
<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>
</div>
<div class="form-group">
<label for="io" class="control-label">Block IO Proportion</label>
<div>
<input type="text" name="io" class="form-control" value="{{ old('io', $server->io) }}"/>
</div>
<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>
<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>
</div>
<div class="form-group">
<label for="cpu" class="control-label">Disk Space Limit</label>