docs/root/extending/extending.rst
.. _extending:
The Envoy architecture makes it fairly easily extensible via a variety of different extension types including:
Access loggers <arch_overview_access_logs>Access log filters <arch_overview_access_log_filters>Clusters <arch_overview_service_discovery>Listener filters <arch_overview_listener_filters>Network filters <arch_overview_network_filters>HTTP filters <arch_overview_http_filters>gRPC credential providers <arch_overview_grpc>Health checkers <arch_overview_health_checking>Resource monitors <arch_overview_overload_manager>Retry implementations <arch_overview_http_routing_retry>Stat sinks <arch_overview_statistics>Tracers <arch_overview_tracing>Request ID <arch_overview_tracing>Watchdog action <envoy_v3_api_msg_config.bootstrap.v3.Watchdog.WatchdogAction>Internal redirect policy <envoy_v3_api_field_config.route.v3.InternalRedirectPolicy.predicates>Compression libraries <arch_overview_compression_libraries>Bootstrap extensions <envoy_v3_api_field_config.bootstrap.v3.Bootstrap.bootstrap_extensions>Fatal actions <envoy_v3_api_field_config.bootstrap.v3.Bootstrap.fatal_actions>Formatters <config_access_log_command_operators>Connection balance extensions <envoy_v3_api_field_config.listener.v3.Listener.ConnectionBalanceConfig.extend_balance>As of this writing there is no high level extension developer documentation. The
:repo:existing extensions <source/extensions> are a good way to learn what is possible.
An example of how to add a network filter and structure the repository and build dependencies can
be found at envoy-filter-example <https://github.com/envoyproxy/envoy-filter-example>_.