The Istio proxy components.
Go to file
Piotr Sikora 01e1626b3b Update Envoy SHA to latest. (#1862)
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
2018-07-18 20:02:21 -04:00
.circleci Update Envoy SHA to latest. (#1857) 2018-07-17 21:38:54 -04:00
.github
include/istio extract origin IP 2018-07-13 12:05:22 -07:00
prow Fix license headers and check for them in CircleCI. (#1820) 2018-06-18 22:24:55 -07:00
script Fix license headers and check for them in CircleCI. (#1820) 2018-06-18 22:24:55 -07:00
src Update Envoy SHA to latest. (#1862) 2018-07-18 20:02:21 -04:00
test/backend/echo Route directive (#1797) 2018-06-07 15:00:58 -07:00
tools Route directive (#1797) 2018-06-07 15:00:58 -07:00
.drone.yml
.gitignore
.travis.yml
BUILD
CONTRIBUTING.md
LICENSE
Makefile
OWNERS
README.md
WORKSPACE Update Envoy SHA to latest. (#1862) 2018-07-18 20:02:21 -04:00
cc_gogo_protobuf.bzl
googleapis.bzl
istio.deps Update Envoy SHA to latest. (#1862) 2018-07-18 20:02:21 -04:00
protobuf.bzl Update Envoy SHA to latest, include health check tracing fix, trace sampling config, etc (#1829) 2018-06-26 13:08:13 -04:00
repositories.bzl update api sha (#1855) 2018-07-17 18:21:34 -07:00
x_tools_imports.bzl

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.