122 lines
2.6 KiB
Go
122 lines
2.6 KiB
Go
|
|
package execd
|
||
|
|
|
||
|
|
import (
|
||
|
|
"bufio"
|
||
|
|
"fmt"
|
||
|
|
"io"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/influxdata/telegraf"
|
||
|
|
"github.com/influxdata/telegraf/config"
|
||
|
|
"github.com/influxdata/telegraf/internal/process"
|
||
|
|
"github.com/influxdata/telegraf/plugins/outputs"
|
||
|
|
"github.com/influxdata/telegraf/plugins/serializers"
|
||
|
|
)
|
||
|
|
|
||
|
|
const sampleConfig = `
|
||
|
|
## Program to run as daemon
|
||
|
|
command = ["my-telegraf-output", "--some-flag", "value"]
|
||
|
|
|
||
|
|
## Delay before the process is restarted after an unexpected termination
|
||
|
|
restart_delay = "10s"
|
||
|
|
|
||
|
|
## Data format to export.
|
||
|
|
## Each data format has its own unique set of configuration options, read
|
||
|
|
## more about them here:
|
||
|
|
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_OUTPUT.md
|
||
|
|
data_format = "influx"
|
||
|
|
`
|
||
|
|
|
||
|
|
type Execd struct {
|
||
|
|
Command []string `toml:"command"`
|
||
|
|
RestartDelay config.Duration `toml:"restart_delay"`
|
||
|
|
Log telegraf.Logger
|
||
|
|
|
||
|
|
process *process.Process
|
||
|
|
serializer serializers.Serializer
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) SampleConfig() string {
|
||
|
|
return sampleConfig
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) Description() string {
|
||
|
|
return "Run executable as long-running output plugin"
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) SetSerializer(s serializers.Serializer) {
|
||
|
|
e.serializer = s
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) Init() error {
|
||
|
|
if len(e.Command) == 0 {
|
||
|
|
return fmt.Errorf("no command specified")
|
||
|
|
}
|
||
|
|
|
||
|
|
var err error
|
||
|
|
|
||
|
|
e.process, err = process.New(e.Command)
|
||
|
|
if err != nil {
|
||
|
|
return fmt.Errorf("error creating process %s: %w", e.Command, err)
|
||
|
|
}
|
||
|
|
e.process.Log = e.Log
|
||
|
|
e.process.RestartDelay = time.Duration(e.RestartDelay)
|
||
|
|
e.process.ReadStdoutFn = e.cmdReadOut
|
||
|
|
e.process.ReadStderrFn = e.cmdReadErr
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) Connect() error {
|
||
|
|
if err := e.process.Start(); err != nil {
|
||
|
|
return fmt.Errorf("failed to start process %s: %w", e.Command, err)
|
||
|
|
}
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) Close() error {
|
||
|
|
e.process.Stop()
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) Write(metrics []telegraf.Metric) error {
|
||
|
|
for _, m := range metrics {
|
||
|
|
b, err := e.serializer.Serialize(m)
|
||
|
|
if err != nil {
|
||
|
|
return fmt.Errorf("error serializing metrics: %s", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
if _, err = e.process.Stdin.Write(b); err != nil {
|
||
|
|
return fmt.Errorf("error writing metrics %s", err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) cmdReadErr(out io.Reader) {
|
||
|
|
scanner := bufio.NewScanner(out)
|
||
|
|
|
||
|
|
for scanner.Scan() {
|
||
|
|
e.Log.Errorf("stderr: %s", scanner.Text())
|
||
|
|
}
|
||
|
|
|
||
|
|
if err := scanner.Err(); err != nil {
|
||
|
|
e.Log.Errorf("Error reading stderr: %s", err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Execd) cmdReadOut(out io.Reader) {
|
||
|
|
scanner := bufio.NewScanner(out)
|
||
|
|
|
||
|
|
for scanner.Scan() {
|
||
|
|
e.Log.Info(scanner.Text())
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
outputs.Add("execd", func() telegraf.Output {
|
||
|
|
return &Execd{}
|
||
|
|
})
|
||
|
|
}
|