proxy-wasm-rust-sdk icon indicating copy to clipboard operation
proxy-wasm-rust-sdk copied to clipboard

WebAssembly for Proxies (Rust SDK)

Results 97 proxy-wasm-rust-sdk issues
Sort by recently updated
recently updated
newest added

Hi all! Currently, because `create_http_context` and similar return non-lifetimed traits, my implementation of `HttpContext` has to have a `'static` lifetime; all the data it contains has to be valid for...

Hello, I'm using the `get_property()` function to retrieve some cluster metadata. The value is a large string about 2MB in size. Everything works as expected, but I saw a reference...

Sorry, I type it here and try to get some help. see below link for my issue: https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/issues/146

One article is 404 (with a security warning) and another leads to a general resources front page.

Also add an example filter demonstrating the use of metrics.

Hi, we are using this SDK for attribute generation via dynamic expressions. We use expr_create to get a expression identifier via `call_foreign_function("expr_create", Option::from(self.condition.as_bytes()));` We cache this id and reuse it...

Hi team, I am trying to understand how to best make http client call from inside wasm filter of envoy proxy. instead of dispatch_http_call, can I use reqwest-wasm instead because...

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...

Panic with message "proxy-wasm-rust-sdk/src/dispatcher.rs:121:14:\nalready borrowed: BorrowMutError" is triggered when `dispatch_grpc_call()` is invoked from `on_grpc_call_response()`. The problem is originated by a [`self.grpc_callouts.borrow_mut()` being invoked inside an `if` condition](https://github.com/proxy-wasm/proxy-wasm-rust-sdk/blob/main/src/dispatcher.rs#L456), that keeps the...