Documentation ¶
Overview ¶
Package infiniband monitors the infiniband status of the system. Optional, enabled if the host has NVIDIA GPUs.
Index ¶
Constants ¶
View Source
const ( StateNameIbstat = "ibstat" StateKeyIbstatData = "data" StateKeyIbstatEncoding = "encoding" StateValueIbstatEncodingJSON = "json" )
View Source
const Name = "accelerator-nvidia-infiniband"
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct {
Query query_config.Config `json:"query"`
}
type Output ¶
type Output struct { // GPUProductName is the product name of the GPU. // Useful to ignore infiniband states for non-infiniband supported GPUs (e.g., GTX 4090). GPUProductName string `json:"gpu_product_name"` InfinibandClassExists bool `json:"infiniband_class_exists"` IbstatExists bool `json:"ibstat_exists"` Ibstat nvidia_query.IbstatOutput `json:"ibstat"` }
func ParseOutputJSON ¶
func ParseStatesToOutput ¶
func ParseStatesToOutput(states ...components.State) (*Output, error)
func ToOutput ¶
func ToOutput(i *nvidia_query.Output) *Output
ToOutput converts nvidia_query.Output to Output. It returns an empty non-nil object, if the input or the required field is nil (e.g., i.SMI).
Click to show internal directories.
Click to hide internal directories.