summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/sensors/init.go
blob: 6753693da5ad43f046d6e2928ff48a71e0cc5f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// SPDX-License-Identifier: GPL-3.0-or-later

package sensors

import (
	"errors"
	"os"
	"os/exec"
	"strings"
)

func (s *Sensors) validateConfig() error {
	if s.BinaryPath == "" {
		return errors.New("no sensors binary path specified")
	}
	return nil
}

func (s *Sensors) initSensorsCliExec() (sensorsCLI, error) {
	binPath := s.BinaryPath

	if !strings.HasPrefix(binPath, "/") {
		path, err := exec.LookPath(binPath)
		if err != nil {
			return nil, err
		}
		binPath = path
	}

	if _, err := os.Stat(binPath); err != nil {
		return nil, err
	}

	sensorsExec := newSensorsCliExec(binPath, s.Timeout.Duration())
	sensorsExec.Logger = s.Logger

	return sensorsExec, nil
}