You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the document notes
KAFKA_TEMPLATE="time="{{.Time}}" container_name="{{.Container.Name}}" source="{{.Source}}" data="{{.Data}}""
but it's not effective.
the error is kafka: template: kafka:1:11: executing "kafka" at <.Time>: can't evaluate field Time in type kafka.KafkaMessage
reason
logspout has changed.
resolve
use this:
KAFKA_TEMPLATE="time="{{.Message.Time}}" container_name="{{.Message.Container.Name}}" source="{{.Message.Source}}" data="{{.Message.Data}}""
The text was updated successfully, but these errors were encountered:
the document notes
KAFKA_TEMPLATE="time="{{.Time}}" container_name="{{.Container.Name}}" source="{{.Source}}" data="{{.Data}}""
but it's not effective.
the error is kafka: template: kafka:1:11: executing "kafka" at <.Time>: can't evaluate field Time in type kafka.KafkaMessage
logspout has changed.
use this:
KAFKA_TEMPLATE="time="{{.Message.Time}}" container_name="{{.Message.Container.Name}}" source="{{.Message.Source}}" data="{{.Message.Data}}""
The text was updated successfully, but these errors were encountered: