The Istio proxy components.
Go to file
Martin Taillefer 004532ce6f Update common files (#2441) 2019-10-20 18:36:36 -07:00
.circleci Retire Linux jobs for istio/proxy on CircleCI. (#2475) 2019-10-18 15:18:37 -07:00
.github add pr template (#698) 2017-12-06 14:45:50 -08:00
common Update common files (#2441) 2019-10-20 18:36:36 -07:00
extensions Update common files (#2441) 2019-10-20 18:36:36 -07:00
include/istio mixer: add hash policy for maglev (#2456) 2019-10-11 14:10:54 -07:00
prow Run go tests with sanitizers. (#2469) 2019-10-18 00:32:54 -07:00
scripts Update common files (#2441) 2019-10-20 18:36:36 -07:00
src Use FilterState instead of DynamicMetadata in Metadata Exchange Filter (#2452) 2019-10-16 13:47:15 -07:00
test Update Envoy-WASM SHA to latest. (#2470) 2019-10-18 10:01:56 -07:00
tools Update metadata exchange filter (#2316) 2019-07-22 11:34:28 -07:00
.bazelrc Update Envoy-WASM SHA to latest. (#2470) 2019-10-18 10:01:56 -07:00
.bazelversion wasm: use filter state instead of metadata (#2421) 2019-09-25 16:47:41 -07:00
.drone.yml Add circleci automation for proxy (#702) 2017-12-10 13:30:03 -05:00
.gitattributes Update common files (#2441) 2019-10-20 18:36:36 -07:00
.gitignore make control plane mTLS for vms by default (#726) 2017-12-14 11:55:16 -08: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 Update common files (#2441) 2019-10-20 18:36:36 -07:00
Makefile.core.mk Update common files (#2441) 2019-10-20 18:36:36 -07:00
Makefile.overrides.mk Update common files (#2441) 2019-10-20 18:36:36 -07:00
README.md A few doc changes for consistency across repos. (#235) 2017-04-09 05:37:30 -07:00
SUPPORT.md Update common files (#2441) 2019-10-20 18:36:36 -07:00
WORKSPACE Update Envoy-WASM SHA to latest. (#2470) 2019-10-18 10:01:56 -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.