diff --git a/plugins/filters/app_janus_sip/README.md b/plugins/filters/app_janus_sip/README.md index 4c749b2..19f6bf6 100644 --- a/plugins/filters/app_janus_sip/README.md +++ b/plugins/filters/app_janus_sip/README.md @@ -10,9 +10,26 @@ This pass-through plugin produces HEP from SIP Events sent via the Janus SIP Plu Example 1: parse janus events as hep. ```` +input { + ws { + host => 0.0.0.0 + port => 8090 + unserializer => raw + } +} + filter { - app_janus_tracer { - debug => true + app_janus_sip { + debug => true + } +} + +output { + hep { + host => 127.0.0.1 + port => 9060 + hep_id => 2022 + hep_type => 1 } } `````