Fix open error handling in file output (#5540)
This commit is contained in:
parent
fa65a82ef3
commit
99a390b8e6
|
@ -129,10 +129,7 @@ func (a *Agent) Run(ctx context.Context) error {
|
|||
wg.Wait()
|
||||
|
||||
log.Printf("D! [agent] Closing outputs")
|
||||
err = a.closeOutputs()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
a.closeOutputs()
|
||||
|
||||
log.Printf("D! [agent] Stopped Successfully")
|
||||
return nil
|
||||
|
@ -589,12 +586,10 @@ func (a *Agent) connectOutputs(ctx context.Context) error {
|
|||
}
|
||||
|
||||
// closeOutputs closes all outputs.
|
||||
func (a *Agent) closeOutputs() error {
|
||||
var err error
|
||||
func (a *Agent) closeOutputs() {
|
||||
for _, output := range a.Config.Outputs {
|
||||
err = output.Output.Close()
|
||||
output.Close()
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// startServiceInputs starts all service inputs.
|
||||
|
|
|
@ -180,6 +180,13 @@ func (ro *RunningOutput) WriteBatch() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (ro *RunningOutput) Close() {
|
||||
err := ro.Output.Close()
|
||||
if err != nil {
|
||||
log.Printf("E! [outputs.%s] Error closing output: %v", ro.Name, err)
|
||||
}
|
||||
}
|
||||
|
||||
func (ro *RunningOutput) write(metrics []telegraf.Metric) error {
|
||||
start := time.Now()
|
||||
err := ro.Output.Write(metrics)
|
||||
|
|
|
@ -43,17 +43,11 @@ func (f *File) Connect() error {
|
|||
if file == "stdout" {
|
||||
f.writers = append(f.writers, os.Stdout)
|
||||
} else {
|
||||
var of *os.File
|
||||
var err error
|
||||
if _, err := os.Stat(file); os.IsNotExist(err) {
|
||||
of, err = os.Create(file)
|
||||
} else {
|
||||
of, err = os.OpenFile(file, os.O_APPEND|os.O_WRONLY, os.ModeAppend)
|
||||
}
|
||||
|
||||
of, err := os.OpenFile(file, os.O_CREATE|os.O_APPEND|os.O_WRONLY, os.ModeAppend|0644)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
f.writers = append(f.writers, of)
|
||||
f.closers = append(f.closers, of)
|
||||
}
|
||||
|
@ -62,16 +56,14 @@ func (f *File) Connect() error {
|
|||
}
|
||||
|
||||
func (f *File) Close() error {
|
||||
var errS string
|
||||
var err error
|
||||
for _, c := range f.closers {
|
||||
if err := c.Close(); err != nil {
|
||||
errS += err.Error() + "\n"
|
||||
errClose := c.Close()
|
||||
if errClose != nil {
|
||||
err = errClose
|
||||
}
|
||||
}
|
||||
if errS != "" {
|
||||
return fmt.Errorf(errS)
|
||||
}
|
||||
return nil
|
||||
return err
|
||||
}
|
||||
|
||||
func (f *File) SampleConfig() string {
|
||||
|
|
Loading…
Reference in New Issue