1. set README.md to English
This commit is contained in:
parent
0d2ee9af4b
commit
dcda4e766f
64
README.md
64
README.md
|
|
@ -65,63 +65,55 @@ ___
|
|||
<br/>
|
||||
<br/>
|
||||
|
||||
# 整体架构图
|
||||
# Arch
|
||||

|
||||
|
||||
# 典型页面展现 / Typical UI show
|
||||
* 支持浏览器:Firefox/Chrome
|
||||
|
||||
## 实时调用链路
|
||||
* 实时链路追踪展现
|
||||
# Quick View
|
||||
* distributed tracer
|
||||

|
||||
* 实时链路追踪详细信息查看
|
||||

|
||||
* 实时链路追踪日志查看
|
||||

|
||||
* 实时链路异常告警邮件
|
||||

|
||||
* 添加应用
|
||||

|
||||
* 应用列表展现
|
||||

|
||||
|
||||
## 分析汇总
|
||||
* 分析结果查询,根据viewpoint模糊匹配查询。查询方式为viewpoint: + 关键字
|
||||

|
||||
* 分析结果展现,通过分析结果查询页面点击进入
|
||||

|
||||
* 分析典型调用链展现
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
* alarm mail
|
||||

|
||||
|
||||
|
||||
# v2.0-2016 Quick Start
|
||||
|
||||
## Required of third party softwares
|
||||
- JDK 1.8
|
||||
## 1. Required of third party softwares
|
||||
- JDK 1.6+ ( instruments applications can run in jdk6 )
|
||||
- JDK 1.8 ( skywalking servers )
|
||||
- zookeeper 3.4.6
|
||||
- mysql
|
||||
- redis-3.0.5
|
||||
|
||||
## instrument javaagent jdk version
|
||||
- support 1.6+ , instruments applications can run in jdk6
|
||||
|
||||
## Download and deploy servers
|
||||
## 2. Download and deploy servers
|
||||
- Download Server release version. [Download](https://github.com/wu-sheng/sky-walking/releases) (.tar.gz)
|
||||
|
||||
### run all servers in a Docker
|
||||
- Docker version is good quick-test.
|
||||
### 2.1 Run all servers in a Docker
|
||||
- Docker version include all-in-one servers.
|
||||
- Suitable for quick-look or test env. High performance and Scalable are not your requirements.
|
||||
|
||||
### deploy your own cluster
|
||||
### 2.2 Deploy your own cluster
|
||||
- waiting for release.
|
||||
|
||||
|
||||
## Download agent
|
||||
## 3. Download agent
|
||||
[  ](https://bintray.com/wu-sheng/skywalking/com.a.eye.skywalking-agent/_latestVersion)
|
||||
|
||||
## 4. Create users, applications and alarm rules in webui
|
||||
- create user, remember your user id.
|
||||
- create applications under the user, remember your application code.
|
||||
- create alarm rules for each applications.
|
||||
|
||||
## start application with -javaagent
|
||||
## 4. Start application with -javaagent
|
||||
```shell
|
||||
java -jar ... -javaagent:/..ospath../skywalking-agent-x.x.jar
|
||||
java -jar ... -javaagent:/..ospath../skywalking-agent-x.x.jar -DuserId=x -DapplicationCode=y -Dservers=192.168.1.16:3300,192.168.1.17:3300
|
||||
```
|
||||
|
||||
## 5. Aha, your applications are being instrumented
|
||||
|
||||
# Recent RoadMap
|
||||
* [In the schedule] v2.1-2017
|
||||
* release a version following OpenTracing.io
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public class ConfigInitializer {
|
|||
|
||||
Config.SkyWalking.USER_ID = System.getProperty("userId");
|
||||
Config.SkyWalking.APPLICATION_CODE = System.getProperty("applicationCode");
|
||||
Config.SkyWalking.SERVERS = System.getProperty("server");
|
||||
Config.SkyWalking.SERVERS = System.getProperty("servers");
|
||||
|
||||
if (configFileStream == null) {
|
||||
logger.info("Not provide sky-walking certification documents, sky-walking api run in default config.");
|
||||
|
|
@ -46,7 +46,7 @@ public class ConfigInitializer {
|
|||
throw new ExceptionInInitializerError("'-DapplicationCode=' is missing.");
|
||||
}
|
||||
if(StringUtil.isEmpty(Config.SkyWalking.SERVERS)){
|
||||
throw new ExceptionInInitializerError("'-Dserver=' is missing.");
|
||||
throw new ExceptionInInitializerError("'-Dservers=' is missing.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue