go-graylog
go-graylog copied to clipboard
Extra fields are only string type
You should change the line
Extra map[string]string
to
Extra map[string]interface{}
to allow different type fields like int, log, etc.