Getting Envoy's Access Logs
The simplest kind of Istio logging is
Envoy’s access logging2.
Envoy proxies print access information to their standard output.
The standard output of Envoy’s containers can then be printed by the kubectl logs
command.
Before you begin
Setup Istio by following the instructions in the Installation guide3.
Deploy the sleep5 sample app to use as a test source for sending requests. If you have automatic sidecar injection enabled, run the following command to deploy the sample app:
Otherwise, manually inject the sidecar before deploying the
sleep
application with the following command:Set the
SOURCE_POD
environment variable to the name of your source pod:
Start the httpbin7 sample.
If you have enabled automatic sidecar injection, deploy the
httpbin
service:Otherwise, you have to manually inject the sidecar before deploying the
httpbin
application:
Enable Envoy’s access logging
If you used an IstioOperator
CR to install Istio, add the following field to your configuration:
Otherwise, add the equivalent setting to your original istioctl install
command, for example:
You can also choose between JSON and text by setting accessLogEncoding
to JSON
or TEXT
.
You may also want to customize the
format9 of the access log by editing accessLogFormat
.
Refer to global mesh options for more information on all three of these settings:
meshConfig.accessLogFile
meshConfig.accessLogEncoding
meshConfig.accessLogFormat
Test the access log
Send a request from
sleep
tohttpbin
:Check
sleep
’s log:Check
httpbin
’s log:
Note that the messages corresponding to the request appear in logs of the Istio proxies of both the source and the destination, sleep
and httpbin
, respectively. You can see in the log the HTTP verb (GET
), the HTTP path (/status/418
), the response code (418
) and other request-related information9.
Cleanup
Shutdown the sleep5 and httpbin7 services:
Disable Envoy’s access logging
Remove, or set to ""
, the meshConfig.accessLogFile
setting in your Istio install configuration.