11 changed files with 132 additions and 4 deletions
@ -0,0 +1,27 @@ |
|||||
|
.gradle |
||||
|
/build/ |
||||
|
!gradle/wrapper/gradle-wrapper.jar |
||||
|
|
||||
|
### STS ### |
||||
|
.apt_generated |
||||
|
.classpath |
||||
|
.factorypath |
||||
|
.project |
||||
|
.settings |
||||
|
.springBeans |
||||
|
.sts4-cache |
||||
|
|
||||
|
### IntelliJ IDEA ### |
||||
|
.idea |
||||
|
*.iws |
||||
|
*.iml |
||||
|
*.ipr |
||||
|
/out/ |
||||
|
|
||||
|
### NetBeans ### |
||||
|
/nbproject/private/ |
||||
|
/build/ |
||||
|
/nbbuild/ |
||||
|
/dist/ |
||||
|
/nbdist/ |
||||
|
/.nb-gradle/ |
@ -0,0 +1,47 @@ |
|||||
|
buildscript { |
||||
|
ext { |
||||
|
springBootVersion = '2.0.3.RELEASE' |
||||
|
} |
||||
|
repositories { |
||||
|
mavenCentral() |
||||
|
} |
||||
|
dependencies { |
||||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
apply plugin: 'java' |
||||
|
apply plugin: 'eclipse' |
||||
|
apply plugin: 'org.springframework.boot' |
||||
|
apply plugin: 'io.spring.dependency-management' |
||||
|
|
||||
|
group = 'com.trgis' |
||||
|
version = '0.0.1-SNAPSHOT' |
||||
|
sourceCompatibility = 1.8 |
||||
|
|
||||
|
repositories { |
||||
|
mavenCentral() |
||||
|
} |
||||
|
|
||||
|
|
||||
|
ext { |
||||
|
springCloudVersion = 'Finchley.RELEASE' |
||||
|
} |
||||
|
configurations { |
||||
|
compile.exclude module: 'log4j' |
||||
|
compile.exclude module: 'slf4j-log4j12' |
||||
|
compile.exclude module: 'spring-boot-starter-logging' |
||||
|
} |
||||
|
|
||||
|
dependencies { |
||||
|
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client') |
||||
|
compile group: 'io.zipkin.java', name: 'zipkin-server', version: '2.9.3' |
||||
|
compile group: 'io.zipkin.java', name: 'zipkin-autoconfigure-ui', version: '2.9.3' |
||||
|
compile('org.springframework.boot:spring-boot-starter-actuator') |
||||
|
} |
||||
|
|
||||
|
dependencyManagement { |
||||
|
imports { |
||||
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
package com.trgis.sb2sc; |
||||
|
|
||||
|
import org.springframework.boot.SpringApplication; |
||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
||||
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; |
||||
|
import zipkin.server.internal.EnableZipkinServer; |
||||
|
|
||||
|
@EnableDiscoveryClient |
||||
|
@SpringBootApplication |
||||
|
@EnableZipkinServer |
||||
|
public class Sb2scZipkinApplication { |
||||
|
public static void main(String[] args) { |
||||
|
SpringApplication.run(Sb2scZipkinApplication.class, args); |
||||
|
} |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
server: |
||||
|
port: 9411 |
||||
|
spring: |
||||
|
application: |
||||
|
name: sc-sc-zipkin |
||||
|
profiles: |
||||
|
active: csdn |
||||
|
eureka: |
||||
|
client: |
||||
|
service-url: |
||||
|
defaultZone: http://root:booszy@localhost:8761/eureka/ |
||||
|
instance: |
||||
|
prefer-ip-address: true |
||||
|
instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}} |
||||
|
appname: sc-zipkin |
||||
|
management: |
||||
|
metrics: |
||||
|
web: |
||||
|
server: |
||||
|
auto-time-requests: false |
@ -1,2 +1,2 @@ |
|||||
rootProject.name = 'sb2sc' |
rootProject.name = 'sb2sc' |
||||
include('sc-eureka','sc-config','sc-provider','sc-consumer','sc-zuul','sc-dashboard') |
include('sc-eureka','sc-config','sc-provider','sc-consumer','sc-zuul','sc-dashboard','sc-zipkin') |
Loading…
Reference in new issue