Advertisement
Guest User

Untitled

a guest
Feb 26th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. ---
  2. # Items that apply to ALL profiles of all microservices
  3. # E.G.: Every client know where the Eureka Server is.
  4. server:
  5. contextPath:
  6. eureka:
  7. instance:
  8. leaseRenewalIntervalInSeconds: 5
  9. lease-expiration-duration-in-seconds: 5
  10. metadata-map:
  11. management.context-path: ${server.contextPath}/private-intmon
  12. status-page-url-path: ${server.contextPath}/private-intmon/info
  13. health-check-url-path: ${server.contextPath}/private-intmon/health
  14. management:
  15. context-path: ${server.contextPath}/private-intmon
  16. http:
  17. connection:
  18. timeout: 5000
  19. timeout:
  20. connect: 5000
  21.  
  22. read: 5000
  23.  
  24.  
  25. database:
  26. timeout:
  27. connect:
  28. default: 3000
  29. read:
  30. default: 7000
  31.  
  32. pool:
  33. size:
  34. default: 3
  35. logging:
  36. level:
  37. org.springframework.web: DEBUG
  38. org.hibernate: ERROR
  39. it.nexi: DEBUG
  40. org.hibernate.SQL: debug
  41. org.hibernate.type : trace
  42. org.springframework.transaction.interceptor: TRACE
  43. config: ${HOME}/app/${spring.application.name}/${spring.application.name}-logback-spring.xml
  44. # config: ${HOME}/offline-property-repo/config-server/logback-spring.xml
  45. path: ${HOME}/logs
  46. file: ${spring.application.name}
  47. org:
  48. hibernate:
  49. flushMode: COMMIT
  50. ws:
  51. timeout:
  52. connect:
  53. default: 5000
  54. read:
  55. default: 20000
  56.  
  57. hystrix:
  58. command:
  59. default:
  60. execution:
  61. isolation:
  62. thread:
  63. timeoutInMilliseconds: 120000
  64. threadpool:
  65. default :
  66. coreSize : 50
  67. maxQueueSize : 50
  68. hibernate:
  69. dialect: org.hibernate.dialect.Oracle12cDialect
  70. transaction:
  71. auto_close_session: true
  72. connection:
  73. autocommit: true
  74. zuul:
  75. host:
  76. socket-timeout-millis: 60000
  77. connect-timeout-millis: 60000
  78.  
  79. spring:
  80. mvc:
  81. favicon:
  82. enabled: false
  83. cloud:
  84. loadbalancer:
  85. retry:
  86. enabled: true
  87.  
  88. sleuth:
  89. sampler:
  90. percentage: 1.0
  91. enabled: true
  92. log:
  93. json:
  94. enabled: true
  95. jackson:
  96. serialization:
  97. WRITE_DATES_AS_TIMESTAMPS: false
  98. rabbitmq:
  99. host: localhost
  100. port: 5672
  101. username: guest
  102. password: guest
  103.  
  104. ribbon:
  105. ReadTimeout: 120000
  106. ConnectTimeout: 120000
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119. endpoints:
  120. shutdown:
  121. sensitive: false
  122. enabled: true
  123. health:
  124. sensitive: false
  125. enabled: true
  126. info:
  127. sensitive: false
  128. enabled: true
  129. metrics:
  130. sensitive: false
  131. enabled: true
  132. trace:
  133. sensitive: false
  134. enabled: true
  135. env:
  136. sensitive: false
  137. enabled: true
  138. configprops:
  139. sensitive: false
  140. enabled: true
  141. jolokia:
  142. sensitive: false
  143. enabled: true
  144.  
  145. ---
  146. spring:
  147. profiles: no-rabbitmq
  148. cloud:
  149. bus:
  150. enabled: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement