This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push: new 20062c6 add istioctl ALS command for document (#5066) 20062c6 is described below commit 20062c68632140e6f7d025e69c2aa660faf3d98b Author: wangwei <lyzhang1...@users.noreply.github.com> AuthorDate: Thu Jul 9 15:06:45 2020 +0800 add istioctl ALS command for document (#5066) * add istioctl ALS command * add note --- docs/en/setup/envoy/als_setting.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/en/setup/envoy/als_setting.md b/docs/en/setup/envoy/als_setting.md index ebc3342..a93e04b 100644 --- a/docs/en/setup/envoy/als_setting.md +++ b/docs/en/setup/envoy/als_setting.md @@ -11,6 +11,13 @@ SkyWalking is the first open source project introducing this ALS based solution You need three steps to open ALS. 1. Open envoyAccessLogService in istio by [enabling **envoyAccessLogService** in ProxyConfig](https://istio.io/docs/reference/config/istio.mesh.v1alpha1/#ProxyConfig). + + Upper istio 1.6.0, if istio installed by demo profile, you can open ALS ues command: + ``` + istioctl manifest apply --set profile=demo --set meshConfig.defaultConfig.envoyAccessLogService.address=skywalking-oap.skywalking.svc:11800 --set meshConfig.enableEnvoyAccessLogService=true + ``` + Note:Skywalking oap service is at skywalking namespace, and the port of gRPC service is 11800 + 2. Open SkyWalking [envoy receiver](../backend/backend-receivers.md). 3. Active ALS k8s-mesh analysis ```yaml @@ -21,3 +28,5 @@ envoy-metric: Note multiple value,please use `,` symbol split Notice, only use this when envoy under Istio controlled, also in k8s env. The OAP requires the read right to k8s API server for all pods IPs. + +You can use `kubectl logs ${You-OAP-Pod} | grep "K8sALSServiceMeshHTTPAnalysis"` to ensure OAP ALS k8s-mesh analysis has been active.