Merge pull request #37029 from thaJeztah/fix-fluentd-partial

Fix fluentd partial detection
Upstream-commit: f4ebcb42ac527b24ab54525d5824478fcd2960c0
Component: engine
This commit is contained in:
Brian Goff
2018-05-10 12:51:02 -04:00
committed by GitHub
@@ -163,7 +163,7 @@ func (f *fluentd) Log(msg *logger.Message) error {
for k, v := range f.extra {
data[k] = v
}
if msg.Partial {
if msg.PLogMetaData != nil {
data["partial_message"] = "true"
}