Skip to content

Commit

Permalink
Make error message more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
faec committed Dec 16, 2024
1 parent 5c72965 commit eaa46b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/outputs/logstash/deadlock.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (r *deadlockListener) run() {
case <-r.ticker.C:
// No progress was made within the timeout, log error so users
// know there is likely a problem with the upstream host
r.log.Errorf("Logstash batch hasn't reported progress in the last %v, the Logstash host may be stalled", r.timeout)
r.log.Errorf("Logstash batch hasn't reported progress in the last %v, the Logstash host may be stalled. This problem can be prevented by configuring Logstash to use PipelineBusV1 or by upgrading Logstash to 8.17+, for details see https://github.com/elastic/logstash/issues/16657", r.timeout)
return
}
}
Expand Down

0 comments on commit eaa46b5

Please sign in to comment.