Rename the message field from the original log

if you want to rename the message from the log then use mutate-gsub filter in the beginning of filter plugin

mutate {
	gsub => ["message", "message:", "information:"]
}

above code will replace message field as information field.

and if you want to remove the message field from output then use mutate-rename filter

  mutate {
    rename => { "message" => "information" }
  }