Add support for output filter chain on listener

- add demo for pii redaction
This commit is contained in:
Adil Hafeez 2026-03-12 15:49:40 -07:00
parent 8ae4901735
commit 73f15feea3
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
16 changed files with 1218 additions and 4 deletions

View file

@ -52,6 +52,7 @@ pub struct Listener {
pub router: Option<String>,
pub agents: Option<Vec<AgentFilterChain>>,
pub filter_chain: Option<Vec<String>>,
pub output_filter_chain: Option<Vec<String>>,
pub port: u16,
}