i'm trying to add a single character at the beginning of field content in logstash. I found on web only how to add it at the end using gsub plugin, like this:
dissect {
        mapping => {"message" => "%{message}<%{payload}"}
      }
      mutate {
        gsub => ["payload", "$", "<"]
      }
but if I would to add "<" at the beginning, how can i do it?
 
    