netdata/netdata

View on GitHub
src/go/collectors/go.d.plugin/modules/megacli/exec.go

Summary

Maintainability
B
4 hrs
Test Coverage
// SPDX-License-Identifier: GPL-3.0-or-later

package megacli

import (
    "context"
    "fmt"
    "os/exec"
    "time"

    "github.com/netdata/netdata/go/go.d.plugin/logger"
)

func newMegaCliExec(ndsudoPath string, timeout time.Duration, log *logger.Logger) *megaCliExec {
    return &megaCliExec{
        Logger:     log,
        ndsudoPath: ndsudoPath,
        timeout:    timeout,
    }
}

type megaCliExec struct {
    *logger.Logger

    ndsudoPath string
    timeout    time.Duration
}

func (e *megaCliExec) physDrivesInfo() ([]byte, error) {
    return e.execute("megacli-disk-info")
}

func (e *megaCliExec) bbuInfo() ([]byte, error) {
    return e.execute("megacli-battery-info")
}

func (e *megaCliExec) execute(args ...string) ([]byte, error) {
    ctx, cancel := context.WithTimeout(context.Background(), e.timeout)
    defer cancel()

    cmd := exec.CommandContext(ctx, e.ndsudoPath, args...)
    e.Debugf("executing '%s'", cmd)

    bs, err := cmd.Output()
    if err != nil {
        return nil, fmt.Errorf("error on '%s': %v", cmd, err)
    }

    return bs, nil
}