netdata/netdata

View on GitHub
src/go/collectors/go.d.plugin/modules/intelgpu/init.go

Summary

Maintainability
A
0 mins
Test Coverage
// SPDX-License-Identifier: GPL-3.0-or-later

package intelgpu

import (
    "fmt"
    "os"
    "path/filepath"

    "github.com/netdata/netdata/go/go.d.plugin/agent/executable"
)

func (ig *IntelGPU) initIntelGPUTopExec() (intelGpuTop, error) {
    ndsudoPath := filepath.Join(executable.Directory, ig.ndsudoName)
    if _, err := os.Stat(ndsudoPath); err != nil {
        return nil, fmt.Errorf("ndsudo executable not found: %v", err)

    }

    return newIntelGpuTopExec(ndsudoPath, ig.UpdateEvery, ig.Logger)
}