Distributed link tracking tools SkyWalking integrated Elasticsearch (based Docker)

Foreword

At present, some of APM tools: Cat, Zipkin, Pinpoint, SkyWalking; Apache SkyWalking observational analysis platform and application performance management systems. Provide distributed tracking, telemetry service grid analysis, metrics aggregation and visualization integration solutions.

For details, see

funtl.com

SkyWalking server configuration

1, mounted on Docker ElasticSearch

mkdir -p /usr/local/docker/skywalking
  • Docker-compose.yml
version: '3.3'
services:
  elasticsearch:
    image: wutang/elasticsearch-shanghai-zone:6.3.2
    container_name: elasticsearch
    restart: always
    ports:
      - 9200:9200
      - 9300:9300
    environment:
      cluster.name: elasticsearch
  • docker-compose up -d run
  • Visit http: // elasticsearchIP: 9200 /

2. Download and start SkyWalking

http://skywalking.apache.org/downloads/

  • Download version 6.x releases, select the tar package to Linux
    Here Insert Picture Description
  • Click the link to download the icon
    Here Insert Picture Description
    attached: If the download is slow, you can copy the download link shown in the image http://mirrors.tuna.tsinghua.edu.cn/apache/skywalking/6.6.0/apache-skywalking-apm-6.6. 0.tar.gz and use the following command to download
wget http://mirrors.tuna.tsinghua.edu.cn/apache/skywalking/6.6.0/apache-skywalking-apm-6.6.0.tar.gz
  • Configuration SkyWalking

Unzip the download is complete, enter the following directory modification application.yml profile
elasticsearch following attributes configured as shown in the picture open

apache-skywalking-apm-6.6.0\apache-skywalking-apm-bin\config

Here Insert Picture Description
Here Insert Picture Description

  • Start SkyWalking

Enter the following directory, double-click to run startup.bat

apache-skywalking-apm-6.6.0\apache-skywalking-apm-bin\bin

Here Insert Picture Description
Browser to http: // localhost: 8080 following interface means that a successful start
Here Insert Picture Description

Welcome small partners to discuss the exchange! ! !

Published 39 original articles · won praise 47 · views 4851

Guess you like

Origin blog.csdn.net/qq_42520112/article/details/104324047