The Istio proxy components.
Go to file
Nupur Garg fe67c04209 Use FilterState instead of DynamicMetadata in Metadata Exchange Filter (#2452)
* Use FilterState instead  of  DynamicMetadata  in  Metadata Exchange  Plugin

Also made  the plugin  in sync with existing HTTP Metadata Exchange Wasm Plugin,  so that stats(prometheus)  plugin  can use this easily.

Fixed based on feedback

* Fix  build errors
2019-10-16 13:47:15 -07:00
.circleci Add Stackdriver access logger (#2429) 2019-10-10 15:59:21 -07:00
.github add pr template (#698) 2017-12-06 14:45:50 -08:00
extensions Use FilterState instead of DynamicMetadata in Metadata Exchange Filter (#2452) 2019-10-16 13:47:15 -07:00
include/istio mixer: add hash policy for maglev (#2456) 2019-10-11 14:10:54 -07:00
prow Record SD metric and add an integration test (#2359) 2019-09-13 15:43:03 -07:00
scripts Publish release binary with symbols and AddressSanitizer. (#2451) 2019-10-09 23:31:47 -07:00
src Use FilterState instead of DynamicMetadata in Metadata Exchange Filter (#2452) 2019-10-16 13:47:15 -07:00
test Use FilterState instead of DynamicMetadata in Metadata Exchange Filter (#2452) 2019-10-16 13:47:15 -07:00
tools Update metadata exchange filter (#2316) 2019-07-22 11:34:28 -07:00
.bazelrc Sync .bazelrc with upstream. (#2449) 2019-10-09 21:01:46 -07:00
.bazelversion wasm: use filter state instead of metadata (#2421) 2019-09-25 16:47:41 -07:00
.commonfiles.sha Revert "Update common files. (#2339)" (#2340) 2019-08-06 19:09:35 -07:00
.drone.yml Add circleci automation for proxy (#702) 2017-12-10 13:30:03 -05:00
.gitignore make control plane mTLS for vms by default (#726) 2017-12-14 11:55:16 -08:00
.golangci.yml Update common files. (#2280) 2019-06-17 11:13:25 -07:00
.travis.yml Update to latest Envoy (#260) 2017-04-25 18:13:37 -07:00
BUGS-AND-FEATURE-REQUESTS.md Update common files. (#2280) 2019-06-17 11:13:25 -07:00
BUILD Run buildifier on the build files and add it to "make check". (#2088) 2019-01-23 16:11:18 -08:00
CODEOWNERS Update CODEOWNERS (#2412) 2019-09-06 12:27:42 -07:00
CONTRIBUTING.md Import common files into this repo. (#2251) 2019-05-31 09:59:18 -07:00
LICENSE Update common files. (#2280) 2019-06-17 11:13:25 -07:00
Makefile fix server.yaml with correct name (#2457) 2019-10-11 03:23:21 -07:00
Makefile.common.mk Revert "Update common files. (#2339)" (#2340) 2019-08-06 19:09:35 -07:00
README.md A few doc changes for consistency across repos. (#235) 2017-04-09 05:37:30 -07:00
SUPPORT.md Import common files into this repo. (#2251) 2019-05-31 09:59:18 -07:00
WORKSPACE Update Envoy SHA (#2464) 2019-10-15 15:51:38 -07:00
go.mod Record SD metric and add an integration test (#2359) 2019-09-13 15:43:03 -07:00
go.sum Record SD metric and add an integration test (#2359) 2019-09-13 15:43:03 -07:00
repositories.bzl update istio/api (#2444) 2019-10-09 10:30:38 -07:00
tsan.suppressions Update Envoy SHA to latest. (#2214) 2019-05-15 16:56:00 -07:00
x_tools_imports.bzl Run buildifier on the build files and add it to "make check". (#2088) 2019-01-23 16:11:18 -08:00

README.md

Istio Proxy

The Istio Proxy is a microservice proxy that can be used on the client and server side, and forms a microservice mesh. The Proxy supports a large number of features.

Client Side Features:

  • Discovery & Load Balancing. The Proxy can use several standard service discovery and load balancing APIs to efficiently distribute traffic to services.

  • Credential Injection. The Proxy can inject client identity, either through connection tunneling or protocol-specific mechanisms such as JWT tokens for HTTP requests.

  • Connection Management. The Proxy manages connections to services, handling health checking, retry, failover, and flow control.

  • Monitoring & Logging. The Proxy can report client-side metrics and logs to the Mixer.

Server Side Features:

  • Rate Limiting & Flow Control. The Proxy can prevent overload of backend systems and provide client-aware rate limiting.

  • Protocol Translation. The Proxy is a gRPC gateway, providing translation between JSON-REST and gRPC.

  • Authentication & Authorization. The Proxy supports multiple authentication mechanisms, and can use the client identities to perform authorization checks through the Mixer.

  • Monitoring & Logging. The Proxy can report server-side metrics and logs to the Mixer.

Please see istio.io to learn about the overall Istio project and how to get in touch with us. To learn how you can contribute to any of the Istio components, including the proxy, please see the Istio contribution guidelines.