https://github.com/renuka-fernando/envoy-external-processor-sample
Example of Envoy External Processor
https://github.com/renuka-fernando/envoy-external-processor-sample
envoy envoyproxy example ext-proc external-processing-filter sample
Last synced: about 2 months ago
JSON representation
Example of Envoy External Processor
- Host: GitHub
- URL: https://github.com/renuka-fernando/envoy-external-processor-sample
- Owner: renuka-fernando
- License: mit
- Created: 2025-01-22T06:19:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-04-14T17:17:58.000Z (2 months ago)
- Last Synced: 2026-04-14T19:18:46.528Z (2 months ago)
- Topics: envoy, envoyproxy, example, ext-proc, external-processing-filter, sample
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
### Run Setup
Start Ext Processing Server:
```sh
cd external_processor; go run main.go; cd -
```
Start Envoy and the backend service:
```sh
docker compose up -d; docker compose logs -ft
```
### Test
```sh
curl http://localhost:8000/svc-1/123?myQuery=bar -H 'MyHeader: Foo' -i -d 'foo bar'
```
### Stop
```sh
docker compose down
```