Create a new field from Message

[method : GET] [requestUri : https://myhost:4433/MyService/api/products/34221/availability/locationId/11111] [reasonPhrase : OK]

This is the text which I receive under the Message field after searching. Is there a way I can create a new field called Method, URI and StatusCode and get the values.

Not in Kibana, you need to do it before it gets into Elasticsearch.

Could you please share a ref. link for implementimg this ?

https://www.elastic.co/guide/en/logstash/current/index.html

In logstash , you can add filter for processing

filter {
mutate { add_field => { "Method" => regexpr expressions } }
}