Collecting Metrics for TCP Services

    The sample application is used as the example throughout this task.

    • Install Istio in your cluster and deploy an application. You must also install .

    • This task assumes that the Bookinfo sample will be deployed in the namespace. If you use a different namespace, update the example configuration and commands.

    1. Setup Bookinfo to use MongoDB.

      1. Install v2 of the ratings service.

        If you are using a cluster with automatic sidecar injection enabled, deploy the services using kubectl:

        Zip

        If you are using manual sidecar injection, run the following command instead:

        1. $ kubectl apply -f <(istioctl kube-inject -f @samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml@)
        2. deployment "ratings-v2" configured
      2. Install the mongodb service:

        Zip

        1. $ kubectl apply -f @samples/bookinfo/platform/kube/bookinfo-db.yaml@
        2. service/mongodb created

        If you are using manual sidecar injection, run the following command instead:

        1. $ kubectl apply -f <(istioctl kube-inject -f @samples/bookinfo/platform/kube/bookinfo-db.yaml@)
        2. service "mongodb" configured
        3. deployment "mongodb-v1" configured
      3. The Bookinfo sample deploys multiple versions of each microservice, so begin by creating destination rules that define the service subsets corresponding to each version, and the load balancing policy for each subset.

        Zip

        If you enabled mutual TLS, run the following command instead:

        To display the destination rules, run the following command:

        1. $ kubectl get destinationrules -o yaml

        Wait a few seconds for destination rules to propagate before adding virtual services that refer to these subsets, because the subset references in virtual services rely on the destination rules.

      4. Create ratings and reviews virtual services:

        1. $ kubectl apply -f @samples/bookinfo/networking/virtual-service-ratings-db.yaml@
        2. virtualservice.networking.istio.io/reviews created
        3. virtualservice.networking.istio.io/ratings created
    2. Send traffic to the sample application.

      For the Bookinfo sample, visit http://$GATEWAY_URL/productpage in your web browser or use the following command:

      $GATEWAY_URL is the value set in the Bookinfo example.

    3. Verify that the TCP metric values are being generated and collected.

      In a Kubernetes environment, setup port-forwarding for Prometheus by using the following command:

      1. $ istioctl dashboard prometheus

      View the values for the TCP metrics in the Prometheus browser window. Select Graph. Enter the istio_tcp_connections_opened_total metric or istio_tcp_connections_closed_total and select Execute. The table displayed in the Console tab includes entries similar to:

      1. istio_tcp_connections_opened_total{
      2. job="istio-mesh",
      3. canonical_service_name="ratings-v2",
      4. canonical_service_revision="v2"}
      1. istio_tcp_connections_closed_total{
      2. destination_version="v1",
      3. instance="172.17.0.18:42422",
      4. job="istio-mesh",
      5. canonical_service_name="ratings-v2",
      6. canonical_service_revision="v2"}

    In this task, you used Istio configuration to automatically generate and report metrics for all traffic to a TCP service within the mesh. TCP Metrics for all active connections are recorded every 15s by default and this timer is configurable via . Metrics for a connection are also recorded at the end of the connection.

    Several TCP-specific attributes enable TCP policy and control within Istio. These attributes are generated by Envoy Proxies and obtained from Istio using Envoy’s Node Metadata. Envoy forwards Node Metadata to Peer Envoys using ALPN based tunneling and a prefix based protocol. We define a new protocol istio-peer-exchange, that is advertised and prioritized by the client and the server sidecars in the mesh. ALPN negotiation resolves the protocol to istio-peer-exchange for connections between Istio enabled proxies, but not between an Istio enabled proxy and any other proxy. This protocol extends TCP as follows:

    1. TCP client, as a first sequence of bytes, sends a magic byte string and a length prefixed payload.
    2. TCP server, as a first sequence of bytes, sends a magic byte sequence and a length prefixed payload. These payloads are protobuf encoded serialized metadata.
    3. Client and server can write simultaneously and out of order. The extension filter in Envoy then does the further processing in downstream and upstream until either the magic byte sequence is not matched or the entire payload is read.

    TCP Attribute Flow