Skip to content

Commit

Permalink
Update GH pages to include GPU config information.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Yundt committed May 23, 2017
1 parent ff4894c commit d81a560
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions _data/configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ sections:
content: configuration/graphs.html
"IP address":
content: configuration/ipam.html
GPUs:
content: configuration/gpus.html
IPMI:
content: configuration/ipmi.html
LLDP:
Expand Down
32 changes: 32 additions & 0 deletions _includes/configuration/gpus.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<p class="lead">Collecting GPU information</p>
<p>
<span class="label label-info">Namespace</span> <span class="inlinecode">gpu</span>
</p>

<p>
GPU information can be stored in collins by adding GPU vendors to a whitelist. By default, any NVIDIA GPUs (PCI vendor = <code>"NVIDIA Corporation"</code>) will be parsed from lshw XML data and added to collins.
Additional vendors can be added by updating the configuration with their PCI vendor information.
</p>

<table class="table table-condensed table-hover">
<thead>
<tr>
<th>Key</th><th>Type</th><th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="inlinecode">supportedVendorStrings</td>
<td>Set[String]</td>
<td>PCI vendor strings to whitelist when parsing LSHW output. Defaults to <code>["NVIDIA Corporation"]</code>.</td>
</tr>
</tbody>
</table>

<div class="example reference-config">
<pre>gpu {

supportedVendorStrings = ["NVIDIA Corporation", "Advanced Micro Devices, Inc. [AMD/ATI]"]

}</pre>
</div>

0 comments on commit d81a560

Please sign in to comment.