nacos:
  address: 47.118.42.164:8848
logstash:
  address: 47.110.231.217:5000
server:
  port: 8080
spring:
  application:
    name: service-windows
  profiles:
    active: test
  main:
    allow-bean-definition-overriding: true
  task:
    execution:
      pool:
        allow-core-thread-timeout: true
        core-size: 8
        max-size: 20
        queue-capacity: 100
        keep-alive: 60s
  cloud:
    loadbalancer:
      ribbon:
        enabled: false
    nacos:
      discovery:
        server-addr: ${nacos.address}
        namespace: ${spring.profiles.active}
      config:
        namespace: ${spring.profiles.active}
        server-addr: ${nacos.address}
        group: DEFAULT_GROUP
        extension-configs[0]:
          data-id: ${spring.application.name}.yaml
          group: DEFAULT_GROUP
          refresh: true
feign:
  sentinel:
    enabled: true
  client:
    config:
      default:
        connectTimeOut: 10000
        readTimeOut: 10000
mybatis:
  mapper-locations: classpath:mybatis/mapper/*.xml
logaddress: ${nacos.address}
logging:
  config: classpath:logback-custom.xml
  level:
    com.jqtx.windows.infrastructure.feign.*: DEBUG
    com.jqtx.windows.repository.mapper.*: DEBUG