Skip to content

Commit

Permalink
升级对应版本
Browse files Browse the repository at this point in the history
  • Loading branch information
JThink committed Nov 23, 2017
1 parent 0780dc9 commit f00a8d5
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@

### dubbox

由于使用dubbox,为了能够采集到dubbox里面的rpc数据,需要修改dubbox的源码,见我修改的dubbox项目:[dubbox](https://github.com/JThink/dubbox/tree/skyeye-trace-1.2.0),该项目主要实现了rpc跟踪的具体实现,需要单独打包。
由于使用dubbox,为了能够采集到dubbox里面的rpc数据,需要修改dubbox的源码,见我修改的dubbox项目:[dubbox](https://github.com/JThink/dubbox/tree/skyeye-trace-1.3.0),该项目主要实现了rpc跟踪的具体实现,需要单独打包。

```shell
git clone https://github.com/JThink/dubbox.git
cd dubbox
git checkout skyeye-trace-1.2.0
git checkout skyeye-trace-1.3.0
修改相关pom中的私服地址
mvn clean install deploy -Dmaven.test.skip=true
```
Expand Down Expand Up @@ -532,7 +532,7 @@ nohup bin/skyeye-web &
gradle或者pom中加入skyeye-client的依赖
``` xml
compile "skyeye:skyeye-client-logback:1.2.0"
compile "skyeye:skyeye-client-logback:1.3.0"
```
### 配置
在logback.xml中加入一个kafkaAppender,并在properties中配置好相关的值,如下(rpc这个项目前支持none和dubbo,所以如果项目中有dubbo服务的配置成dubbo,没有dubbo服务的配置成none,以后会支持其他的rpc框架,如:thrift、spring cloud等):
Expand Down Expand Up @@ -564,7 +564,7 @@ compile "skyeye:skyeye-client-logback:1.2.0"
gradle或者pom中加入skyeye-client的依赖
``` xml
compile "skyeye:skyeye-client-log4j:1.2.0"
compile "skyeye:skyeye-client-log4j:1.3.0"
```
### 配置
在log4j.xml中加入一个kafkaAppender,并在properties中配置好相关的值,如下(rpc这个项目前支持none和dubbo,所以如果项目中有dubbo服务的配置成dubbo,没有dubbo服务的配置成none,以后会支持其他的rpc框架,如:thrift、spring cloud等):
Expand Down Expand Up @@ -593,7 +593,7 @@ compile "skyeye:skyeye-client-log4j:1.2.0"
gradle或者pom中加入skyeye-client的依赖
``` xml
compile "skyeye:skyeye-client-log4j2:1.2.0"
compile "skyeye:skyeye-client-log4j2:1.3.0"
```
### 配置
Expand All @@ -620,11 +620,11 @@ compile "skyeye:skyeye-client-log4j2:1.2.0"
### log4j
由于log4j本身的appender比较复杂难写,所以在稳定性和性能上没有logback支持得好,应用能使用logback请尽量使用logback
### rpc trace
使用自己打包的dubbox([dubbox](https://github.com/JThink/dubbox/tree/skyeye-trace-1.2.0)),在soa中间件dubbox中封装了rpc的跟踪
使用自己打包的dubbox([dubbox](https://github.com/JThink/dubbox/tree/skyeye-trace-1.3.0)),在soa中间件dubbox中封装了rpc的跟踪
``` shell
compile "com.101tec:zkclient:0.10"
compile ("com.alibaba:dubbo:2.8.4-skyeye-trace-1.2.0") {
compile ("com.alibaba:dubbo:2.8.4-skyeye-trace-1.3.0") {
exclude group: 'org.springframework', module: 'spring'
}
```
Expand Down
8 changes: 4 additions & 4 deletions skyeye-benchmark/dubbo-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ allprojects {
apply plugin: 'eclipse'

group = 'skyeye'
version = '1.2.0'
version = '1.3.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
Expand Down Expand Up @@ -36,9 +36,9 @@ subprojects {

ext {
slf4jVersion = '1.7.25'
dubboVersion = '2.8.4-skyeye-trace-1.2.0'
dataVersion = '1.2.0'
clientVersion = '1.2.0'
dubboVersion = '2.8.4-skyeye-trace-1.3.0'
dataVersion = '1.3.0'
clientVersion = '1.3.0'
zookeeperVerison = '3.4.6'
zkClientVersion = '0.10'
}
Expand Down
4 changes: 2 additions & 2 deletions skyeye-benchmark/hi-log/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ allprojects {
apply plugin: 'eclipse'

group = 'skyeye'
version = '1.2.0'
version = '1.3.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
Expand Down Expand Up @@ -35,7 +35,7 @@ subprojects {
apply plugin: 'eclipse'

ext {
clientVersion = '1.2.0'
clientVersion = '1.3.0'
}

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
Expand Down
4 changes: 2 additions & 2 deletions skyeye-benchmark/log-generater/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'application'

group = 'skyeye'
applicationName = 'log-generater'
version = '1.2.0'
version = '1.3.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand All @@ -21,7 +21,7 @@ repositories {
}

ext {
clientVersion = '1.2.0'
clientVersion = '1.3.0'
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions skyeye-benchmark/spring-cloud-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ allprojects {
apply plugin: 'eclipse'

group = 'skyeye'
version = '1.2.0'
version = '1.3.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
Expand Down Expand Up @@ -35,7 +35,7 @@ subprojects {
apply plugin: 'eclipse'

ext {
clientVersion = '1.2.0'
clientVersion = '1.3.0'
}

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
Expand Down
10 changes: 5 additions & 5 deletions skyeye-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
gradle或者pom中加入skyeye-client的依赖

``` xml
compile "skyeye:skyeye-client-logback:1.2.0"
compile "skyeye:skyeye-client-logback:1.3.0"
```
### 配置
在logback.xml中加入一个kafkaAppender,并在properties中配置好相关的值,如下(rpc这个项目前支持none和dubbo,所以如果项目中有dubbo服务的配置成dubbo,没有dubbo服务的配置成none,以后会支持其他的rpc框架,如:thrift、spring cloud等):
Expand Down Expand Up @@ -43,7 +43,7 @@ compile "skyeye:skyeye-client-logback:1.2.0"
gradle或者pom中加入skyeye-client的依赖

``` xml
compile "skyeye:skyeye-client-log4j:1.2.0"
compile "skyeye:skyeye-client-log4j:1.3.0"
```
### 配置
在log4j.xml中加入一个kafkaAppender,并在properties中配置好相关的值,如下(rpc这个项目前支持none和dubbo,所以如果项目中有dubbo服务的配置成dubbo,没有dubbo服务的配置成none,以后会支持其他的rpc框架,如:thrift、spring cloud等):
Expand Down Expand Up @@ -72,7 +72,7 @@ compile "skyeye:skyeye-client-log4j:1.2.0"
gradle或者pom中加入skyeye-client的依赖

``` xml
compile "skyeye:skyeye-client-log4j2:1.2.0"
compile "skyeye:skyeye-client-log4j2:1.3.0"
```

### 配置
Expand All @@ -99,11 +99,11 @@ compile "skyeye:skyeye-client-log4j2:1.2.0"
### log4j
由于log4j本身的appender比较复杂难写,所以在稳定性和性能上没有logback支持得好,应用能使用logback请尽量使用logback
### rpc trace
使用自己打包的dubbox([dubbox](https://github.com/JThink/dubbox/tree/skyeye-trace-1.2.0)),在soa中间件dubbox中封装了rpc的跟踪
使用自己打包的dubbox([dubbox](https://github.com/JThink/dubbox/tree/skyeye-trace-1.3.0)),在soa中间件dubbox中封装了rpc的跟踪

``` shell
compile "com.101tec:zkclient:0.10"
compile ("com.alibaba:dubbo:2.8.4-skyeye-trace-1.2.0") {
compile ("com.alibaba:dubbo:2.8.4-skyeye-trace-1.3.0") {
exclude group: 'org.springframework', module: 'spring'
}
```
Expand Down
4 changes: 2 additions & 2 deletions skyeye-statistics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'application'

group = 'skyeye'
applicationName = 'skyeye-statistics'
version = '1.2.0'
version = '1.3.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand All @@ -27,7 +27,7 @@ ext {
scalaVersion = '2.10.4'
scalaBinaryVersion = '2.10'
sparkVersion = '1.3.0-cdh5.4.0'
baseVersion = '1.2.0'
baseVersion = '1.3.0'
fastjsonVersion = '1.2.35'
zkClientVersion = '0.10'
}
Expand Down
8 changes: 4 additions & 4 deletions skyeye-statistics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>skyeye</groupId>
<artifactId>skyeye-statistics</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<packaging>jar</packaging>
<url>http://maven.apache.org</url>

Expand All @@ -14,15 +14,15 @@
<java.version>1.8</java.version>
<scala.version>2.10.4</scala.version>
<scala.binary.version>2.10</scala.binary.version>
<spark.version>1.3.0-cdh5.4.0</spark.version>
<base.version>1.2.0</base.version>
<spark.version>1.3.0-cdh5.4.4</spark.version>
<base.version>1.3.0</base.version>
<fastjson.version>1.2.35</fastjson.version>
</properties>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.4.RELEASE</version>
<version>1.5.6.RELEASE</version>
<relativePath />
</parent>

Expand Down

0 comments on commit f00a8d5

Please sign in to comment.