| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #Web服务器端口
- # 服务器上的端口是 9400 本地启动的端口是 9403
- server:
- port: 9400
- debug: true
- spring:
- cloud:
- consul:
- discovery:
- prefer-ip-address: true # ip自动注册
- hostname: localhost # 配置实例地址
- port: ${server.port}
- health-check-path: /actuator/health # 检测实例健康
- health-check-interval: 10s # 每隔10s检查
- register: true # 自动注册
- service-name: ${spring.application.name} # 实例名称
- instance-id: ${spring.application.name}:${server.port}
- host: ${ApplicationCenter.url}
- port: ${ApplicationCenter.port}
- #kafka
- stream:
- kafka:
- binder:
- brokers: ${Kafka.brokers}
- replication-factor: 1
- bindings:
- userLogStreamConsumer-in-0:
- destination: UserLogStream
- group: ${project.artifactId}
- function: #注意:此处有调整
- definition: userLogStreamConsumer
- bus:
- enabled: true
- #配置zipkin链路追踪客户端
- zipkin:
- base-url: ${Zipkin.baseUrl}
- enabled: true
- sender:
- type: web
- sleuth:
- sampler:
- probability: ${Zipkin.sampler.probability}
- thymeleaf:
- suffix: .html
- mode: HTML
- prefix: classpath:/templates/
- cache: false
- encoding: UTF-8
- #调试或者输出日志
- logging:
- file:
- name: logs/${project.artifactId}.log
|