README.md 5.7 KB
Newer Older
1
Apache SkyWalking
wu-sheng's avatar
wu-sheng 已提交
2 3
==========

4
<img src="http://skywalking.apache.org/assets/logo.svg" alt="Sky Walking logo" height="90px" align="right" />
wu-sheng's avatar
wu-sheng 已提交
5

6
**SkyWalking**: an APM(application performance monitor) system, especially designed for
wu-sheng's avatar
wu-sheng 已提交
7
microservices, cloud native and container-based (Docker, Kubernetes, Mesos) architectures.
wu-sheng's avatar
wu-sheng 已提交
8

9
[![GitHub stars](https://img.shields.io/github/stars/apache/skywalking.svg?style=for-the-badge&label=Stars&logo=github)](https://github.com/apache/skywalking)
wu-sheng's avatar
wu-sheng 已提交
10
[![Twitter Follow](https://img.shields.io/twitter/follow/asfskywalking.svg?style=for-the-badge&label=Follow&logo=twitter)](https://twitter.com/AsfSkyWalking)
wu-sheng's avatar
wu-sheng 已提交
11

wu-sheng's avatar
wu-sheng 已提交
12
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.skywalking/apache-skywalking-apm.svg)](http://skywalking.apache.org/downloads/)
13 14
[![CI/IT Tests](https://github.com/apache/skywalking/workflows/CI%20AND%20IT/badge.svg?branch=master)](https://github.com/apache/skywalking/actions?query=branch%3Amaster+event%3Apush+workflow%3A%22CI+AND+IT%22)
[![E2E Tests](https://github.com/apache/skywalking/workflows/E2E/badge.svg?branch=master)](https://github.com/apache/skywalking/actions?query=branch%3Amaster+event%3Apush+workflow%3AE2E)
wu-sheng's avatar
wu-sheng 已提交
15

16
# Abstract
17
**SkyWalking** is an open source APM system, including monitoring, tracing, diagnosing capabilities for distributed system
18
in Cloud Native architecture.
wu-sheng's avatar
wu-sheng 已提交
19
The core features are following.
20 21

- Service, service instance, endpoint metrics analysis
22
- Root cause analysis. Profile the code on the runtime.
23 24 25
- Service topology map analysis
- Service, service instance and endpoint dependency analysis
- Slow services and endpoints detected
26
- Performance optimization
27
- Distributed tracing and context propagation
28
- Database access metrics. Detect slow database access statements(including SQL statements).
29 30
- Alarm

wu-sheng's avatar
wu-sheng 已提交
31

wu-sheng's avatar
wu-sheng 已提交
32
<img src="http://skywalking.apache.org/assets/frame.jpeg?u=20190518"/>
33

wu-sheng's avatar
wu-sheng 已提交
34
SkyWalking supports to collect telemetry (traces and metrics) data from multiple sources
35 36
and multiple formats,
including
37
1. Java, [.NET Core](https://github.com/SkyAPM/SkyAPM-dotnet), [NodeJS](https://github.com/SkyAPM/SkyAPM-nodejs) and [PHP](https://github.com/SkyAPM/SkyAPM-php-sdk) auto-instrument agents in SkyWalking format
38 39 40 41
1. [Go agent](https://github.com/tetratelabs/go2sky).
1. [LUA agent](https://github.com/apache/skywalking-nginx-lua), especially for Nginx, OpenResty.
1. Envoy gRPC Access Log Service (ALS) format in Istio controlled service mesh. 
1. Istio telemetry format.
42 43
1. Envoy Metrics Service format.
1. Zipkin v1/v2 format.
wu-sheng's avatar
wu-sheng 已提交
44
1. Jaeger gRPC format.
wu-sheng's avatar
wu-sheng 已提交
45

wu-sheng's avatar
wu-sheng 已提交
46

wu-sheng's avatar
wu-sheng 已提交
47
# Document
48
- [8.x Documentation, dev version](docs/README.md).
49 50 51
- [7.0.0 Documentation](https://github.com/apache/skywalking/blob/v7.0.0/docs/README.md).
- [6.6 Documentation](https://github.com/apache/skywalking/blob/v6.6.0/docs/README.md).
- [6.5 Documentation](https://github.com/apache/skywalking/blob/v6.6.0/docs/README.md).
wu-sheng's avatar
wu-sheng 已提交
52

53
The documentation links works after the official release.
wu-sheng's avatar
wu-sheng 已提交
54

wu-sheng's avatar
wu-sheng 已提交
55
# Downloads
56
Please head to the [releases page](http://skywalking.apache.org/downloads/) to download a release of Apache SkyWalking.
wu-sheng's avatar
wu-sheng 已提交
57

58

wu-sheng's avatar
wu-sheng 已提交
59
# Code of conduct
60
This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
P
panjuan 已提交
61
Please follow the [REPORTING GUIDELINES](CODE_OF_CONDUCT.md#reporting-guidelines) to report unacceptable behavior.
wu-sheng's avatar
wu-sheng 已提交
62

wu-sheng's avatar
wu-sheng 已提交
63
# Live Demo
X
Xin,Zhang 已提交
64
Host in Beijing. Go to [demo](http://122.112.182.72:8080).
wu-sheng's avatar
wu-sheng 已提交
65 66 67 68 69

**Video on youtube.com**

[![RocketBot UI](http://img.youtube.com/vi/JC-Anlshqx8/0.jpg)](http://www.youtube.com/watch?v=JC-Anlshqx8)

wu-sheng's avatar
wu-sheng 已提交
70

71
# Screenshot
wu-sheng's avatar
wu-sheng 已提交
72 73
<table>
  <tr>
74
    <td width="100%" align="center" colspan="2"><b>Dashboard</b></td>
wu-sheng's avatar
wu-sheng 已提交
75 76
  </tr>
  <tr>
77 78 79 80 81 82 83 84 85 86
    <td><img src="http://skywalking.apache.org/screenshots/6.1.0/dashboard-1.png"/></td>
    <td><img src="http://skywalking.apache.org/screenshots/6.1.0/dashboard-2.png"/></td>
  </tr>
  <tr>
      <td width="50%" align="center"><b>Topology Map</b></td>
      <td width="50%" align="center"><b>Trace</b></td>
  </tr>
  <tr>
     <td><img src="http://skywalking.apache.org/screenshots/6.1.0/topology.png"/></td>
     <td><img src="http://skywalking.apache.org/screenshots/6.1.0/trace.png"/></td>
wu-sheng's avatar
wu-sheng 已提交
87 88
  </tr>
</table>
wu-sheng's avatar
wu-sheng 已提交
89

90
# Compiling project
wu-sheng's avatar
wu-sheng 已提交
91
Follow this [document](docs/en/guides/How-to-build.md).
wu-sheng's avatar
wu-sheng 已提交
92

wu-sheng's avatar
wu-sheng 已提交
93
# Contact Us
94
* Submit an [issue](https://github.com/apache/skywalking/issues)
95
* Mail list: **dev@skywalking.apache.org**. Mail to `dev-subscribe@skywalking.apache.org`, follow the reply to subscribe the mail list.
W
Weiyi Liu 已提交
96
* Join `skywalking` channel at [Apache Slack](https://join.slack.com/t/the-asf/shared_invite/enQtNzc2ODE3MjI1MDk1LTAyZGJmNTg1NWZhNmVmOWZjMjA2MGUyOGY4MjE5ZGUwOTQxY2Q3MDBmNTM5YTllNGU4M2QyMzQ4M2U4ZjQ5YmY). If the link is not working, find the latest one at [Apache INFRA WIKI](https://cwiki.apache.org/confluence/display/INFRA/Slack+Guest+Invites).
wu-sheng's avatar
wu-sheng 已提交
97
* QQ Group: 392443393(2000/2000, not available), 901167865(available)
wu-sheng's avatar
wu-sheng 已提交
98

wu-sheng's avatar
wu-sheng 已提交
99
# Who Uses SkyWalking?
wu-sheng's avatar
wu-sheng 已提交
100 101 102
Hundreds of companies and organizations use SkyWalking for research, production, and commercial product.

<img src="http://skywalking.apache.org/assets/users-20191216.png"/>
wu-sheng's avatar
wu-sheng 已提交
103 104 105

The [PoweredBy](docs/powered-by.md) page includes more users of the project.
Users are encouraged to add themselves to there.
wu-sheng's avatar
wu-sheng 已提交
106

wu-sheng's avatar
wu-sheng 已提交
107 108 109 110
# Landscapes

<p align="center">
<br/><br/>
wu-sheng's avatar
wu-sheng 已提交
111
<img src="https://landscape.cncf.io/images/left-logo.svg" width="150"/>&nbsp;&nbsp;<img src="https://landscape.cncf.io/images/right-logo.svg" width="200"/>
wu-sheng's avatar
wu-sheng 已提交
112 113 114 115 116
<br/><br/>
SkyWalking enriches the <a href="https://landscape.cncf.io/landscape=observability-and-analysis&license=apache-license-2-0">CNCF CLOUD NATIVE Landscape.

</p>

117
<p align="center">
118
<a href="https://openapm.io"><img src="https://openapm.io/static/media/openapm_logo.svg" width="100"/></a>
119 120 121
  <br/>Our project enriches the <a href="https://openapm.io">OpenAPM Landscape!</a>
</p>

wu-sheng's avatar
wu-sheng 已提交
122
# License
wu-sheng's avatar
wu-sheng 已提交
123
[Apache 2.0 License.](/LICENSE)