Results 6 issues of Lugia

### Bug Description I create some EnvoyFilters by my custom controller at the same time, the Envoy then brokedown, and it was back to normal when it restart. These are...

My plugin configuration is quite large, and I don't want to clone the plugin configuration every time When I create an httpContext. Can I use Rc::clone() inside Wasm? (Is it...

### Is this the right place to submit this? - [X] This is not a security vulnerability or a crashing bug - [X] This is not a question about how...

area/extensions and telemetry
lifecycle/stale

I am injecting a wasm plugin for envoy in the istio 1.18 environment. During the stress test, the following error occurred. I didn't implement on_log in my wasm code, and...

go code: ``` package main import ( "net/http" "github.com/stealthrocket/net/wasip1" ) func main() { listener, err := wasip1.Listen("tcp", "127.0.0.1:3000") if err != nil { panic(err) } server := &http.Server{ Handler: http.HandlerFunc(func(w...

``` func (s *handler) forwardClientToServer(src grpc.ClientStream, dst grpc.ServerStream) chan error { ret := make(chan error, 1) go func() { f := &emptypb.Empty{} for i := 0; ; i++ { if...