39 lines
674 B
Go
39 lines
674 B
Go
// +build windows
|
|
|
|
package execd
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
"time"
|
|
|
|
"github.com/influxdata/telegraf"
|
|
)
|
|
|
|
func (e *Execd) Gather(acc telegraf.Accumulator) error {
|
|
if e.cmd == nil || e.cmd.Process == nil {
|
|
return nil
|
|
}
|
|
|
|
switch e.Signal {
|
|
case "STDIN":
|
|
if osStdin, ok := e.stdin.(*os.File); ok {
|
|
osStdin.SetWriteDeadline(time.Now().Add(1 * time.Second))
|
|
}
|
|
if _, err := io.WriteString(e.stdin, "\n"); err != nil {
|
|
return fmt.Errorf("Error writing to stdin: %s", err)
|
|
}
|
|
case "none":
|
|
default:
|
|
return fmt.Errorf("invalid signal: %s", e.Signal)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func gracefulStop(cmd *exec.Cmd, timeout time.Duration) {
|
|
cmd.Process.Kill()
|
|
}
|