Skip to content

Kubernetes Cluster Application Using SkyWalking to Collect Tracing Data


Introduction

In Kubernetes clusters, applications are deployed in the form of images. When using SkyWalking to collect application tracing data, if you follow the traditional method of embedding the SkyWalking Agent into each application image before deployment, it can lead to overly large images and make future upgrades to SkyWalking inconvenient. This article introduces a method that uses the official SkyWalking image with initContainers to provide the SkyWalking Agent for applications to collect tracing data.

Prerequisites

Install DataKit

  • DataKit>
  • DataKit version >=1.4.15

Enable Input

Enable the SkyWalking collector by adding the /usr/local/datakit/conf.d/skywalking/skywalking.conf file on the server where DataKit is located. When deploying using DaemonSet, define a ConfigMap first, then mount the file into the DataKit container. The datakit.yaml file used during DataKit deployment will be needed next.

Define skywalking.conf

Add the definition of skywalking.conf in the ConfigMap resource of the datakit.yaml file.

apiVersion: v1
kind: ConfigMap
metadata:
  name: datakit-conf
  namespace: datakit
data:  
    ## Below is the new content
    skywalking.conf: |- 
        [[inputs.skywalking]]
          ## SkyWalking gRPC server listening address
          address = "0.0.0.0:11800"

Mount skywalking.conf

Add the following content under volumeMounts in the datakit.yaml file.

        - mountPath: /usr/local/datakit/conf.d/skywalking/skywalking.conf
          name: datakit-conf
          subPath: skywalking.conf

Restart DataKit

kubectl delete -f datakit.yaml
kubectl apply -f datakit.yaml

Java Tracing Data Integration

Write Test Application

The example uses datakit-springboot-demo. After downloading, package it into a JAR file named service-demo-1.0-SNAPSHOT.jar.

Build Image

Write a Dockerfile.

FROM openjdk:8u292

RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
ENV jar service-demo-1.0-SNAPSHOT.jar

ENV workdir /data/app/
RUN mkdir -p ${workdir}
COPY ${jar} ${workdir}
WORKDIR ${workdir}
ENTRYPOINT ["sh", "-ec", "exec java ${JAVA_OPTS} -jar ${jar} ${PARAMS} "]

Build and push the image to the image repository.

docker build -t 172.16.0.246/df-demo/service-demo:v1 .
docker push 172.16.0.246/df-demo/service-demo:v1

Deploy Application

In the skywalking-demo.yaml file for application deployment, use initContainers to initialize the apache/skywalking-java-agent:8.7.0-alpine image. Applications within the same Pod can access skywalking-agent.jar, and define the startup command for the JAR in JAVA_OPTS. Specifically, -Dskywalking.agent.service_name=skywalking-demo-master sets the alias of the application to skywalking-demo-master.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: skywalking-demo-deployment
spec:
  replicas: 1
  selector:
    matchLabels:
      app: skywalking-demo-pod
  template:
    metadata:
      labels:
        app: skywalking-demo-pod
      annotations:
    spec:
      containers:
      - name: skywalking-demo-demo-container
        image: 172.16.0.246/df-demo/service-demo:v1
        env:
        - name: HOST_IP
          valueFrom:
            fieldRef:
              apiVersion: v1
              fieldPath: status.hostIP
        - name: HOST_NAME
          valueFrom:
            fieldRef:
              apiVersion: v1
              fieldPath: spec.nodeName      
        - name: JAVA_OPTS
          value: |-
                -javaagent:/skywalking/agent/skywalking-agent.jar -Dskywalking.agent.service_name=skywalking-demo-master  -Dskywalking.collector.backend_service=$(HOST_IP):11800           
        ports:
        - containerPort: 8090
          protocol: TCP
        volumeMounts:
        - mountPath: /skywalking
          name: skywalking-agent
      initContainers:
        - name: agent-container
          image: apache/skywalking-java-agent:8.7.0-alpine
          volumeMounts:
            - name: skywalking-agent   
              mountPath: /agent
          command: [ "/bin/sh" ]
          args: [ "-c", "cp -R /skywalking/agent /agent/" ]  
      restartPolicy: Always
      volumes:
        - name: skywalking-agent
          emptyDir: {}
kubectl apply -f skywalking-demo.yaml 

Access Application

Check the pod port.

image

Invoke the application to generate tracing data.

curl 10.244.36.98:8090/ping

Application Performance Monitoring (APM)

Log in to Guance and enter the APM module to view the skywalking-demo-master application.

image

Feedback

Is this page helpful? ×