The Istio proxy components.
Go to file
Brian Avery cd3fd800f5 Update istio.deps SHA (#2413) 2019-09-06 15:31:43 -07:00
.circleci Use .bazelrc as part of CircleCI's cache key. (#2407) 2019-08-29 20:24:31 -07:00
.github
extensions correct metric name (#2410) 2019-09-04 18:48:05 -07:00
include/istio [release-1.3] Expose telemetry on TCP new Connection callback (#2381) 2019-08-20 17:04:34 -07:00
prow
scripts Always link against libc++. (#2357) (#2369) 2019-08-16 19:57:32 -07:00
src [release-1.3] Add ability to fail_open (allow) when quota backend is unavailable (#2404) 2019-08-29 09:43:33 -07:00
test Cherry pick exchange metadata updates and statname fixes. (#2383) 2019-08-21 16:56:26 -07:00
tools
.bazelrc Provide Bazel configs for RBE and Docker Sandbox. (#2397, #2400) (#2402) 2019-08-28 20:09:31 -07:00
.bazelversion Use Bazelisk launcher for Bazel. (#2371) (#2376) 2019-08-19 21:38:32 -07:00
.commonfiles.sha
.drone.yml
.gitignore
.golangci.yml
.travis.yml
BUGS-AND-FEATURE-REQUESTS.md
BUILD
CODEOWNERS Set release managers as CODEOWNERS for release-1.3 (#2356) 2019-08-13 13:59:19 -07:00
CONTRIBUTING.md
LICENSE
Makefile Update Envoy-WASM SHA to latest with wee8 v7.8. (#2395) (#2398) 2019-08-28 00:23:53 -07:00
Makefile.common.mk
README.md
SUPPORT.md
WORKSPACE Update to 6577606a43d799e8d60be81258efa21d78eafe96 for h2c fix. (#2411) 2019-09-05 11:32:03 -07:00
istio.deps Update istio.deps SHA (#2413) 2019-09-06 15:31:43 -07:00
repositories.bzl Update istio.api to release-1.3:tip (#2384) 2019-08-21 18:55:26 -07:00
tsan.suppressions
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.