I am new to the Envoy proxy. I am trying to understand the filters basic config for "http_connection_manager"
I have this code :
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
codec_type: auto
stat_prefix: ingress_http
I need help in understanding what is the meeting of :
name: envoy.filters.network.http_connection_manager --- ( I think it is an inbuild HTTP filter of some kind)
"@type":type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager --- (I have no idea, what is this )
I tried to understand it from official docs and also read some medium posts, some youtube videos, but still, I have not able to decode the meaning of these lines.
If somebody has an answer, I will be grateful. even any resource, post or video link, or any kind of info is also appreciated, please share those if possible. thanks