SR No | Property | Description |
---|---|---|
1 | hystrix.command.user-key.circuitBreaker.requestVolumeThreshold | This property sets the minimum number of requests in a rolling window that will trip the circuit. |
2 | hystrix.command.user-key.circuitBreaker.sleepWindowInMilliseconds | This property sets the amount of time, after tripping the circuit, to reject requests before allowing attempts again to determine if the circuit should again be closed. |
3 | hystrix.command.user-key.execution.isolation.thread.timeoutInMilliseconds | This property sets the amount of time, after tripping the circuit, to reject requests before allowing attempts again to determine if the circuit should again be closed. |
4 | server.servlet.contextPath | By default, the context path is /". If that’s not ideal and you need to change it – to something like /app_name |
5 | server.servlet.staticPath | By default, the staticPath path is /storefront". If that’s not ideal and you need to change it – to something like /app_name suffix |
6 | server.tomcat.accesslog.enabled | This property controls the tomcat logs for the boot application. |
7 | server.tomcat.accesslog.pattern | This property is used to set the pattern for writing logs in tomcat |
8 | server.tomcat.accesslog.directory | Directory in which log files are created. Can be absolute or relative to the Tomcat base dir |
9 | server.tomcat.accesslog.max-days | The maximum number of days rotated access logs will be retained for before being deleted. If not specified, the default value of 10 |
10 | server.ssl.enabled | This property controls the SSL configuration for the boot application. |
11 | server.ssl.enabled-protocols | This property holds the protocols enabled for this application, it takes comma separated values. |
12 | server.ssl.key-store | This property holds the keystore PrivateKeyEntry which will be used as the SSL certificate for the microservice. |
13 | server.ssl.key-store-password | This property holds the keystore password for opening the keystore mentioned in key-store property. |
14 | server.ssl.key-store-type | This property holds the keystore type. |
15 | server.ssl.key-alias | This property holds the keystore alias name set during the import using keytool utility. |
16 | camel.messagehistory.enabled | This property is used to enable the message history in camel |
17 | camel.component.servlet.mapping.contextPath | This property is used to map camel rest to springboot application |
18 | camel.threadpool.poolSize | It holds corePool size value |
19 | camel.threadpool.maxPoolSize | It holds maxPoolSize size value |
20 | camel.threadpool.maxQueueSize | It holds maxQueueSize size value |
21 | skava.accessControl.allowOrigin | This property is used to set allowOrigin for cors request |
22 | skava.security.enabled | This property is used to decide adding security headers in the response |
23 | skava.guestCookieExpirationTime | This property is used to set guess cookie expiration time in seconds. |
24 | skava.loginCookieExpirationTime | This property is used to set login cookie expiration time in seconds. |
25 | skava.authorization.tokenSecret | This property is used to denote the secret value for jwt |
26 | skava.environment.name | This property is used to denote the current environment |
27 | skava.secretsmanager.className | this property is used to specify which class to be used for secret management |
28 | skava.log.enabled | This property is used to enable the log component |
29 | skava.log.fileAppenderEnabled | This property is used to enable the file appender log |
30 | skava.log.fluentdAppenderEnabled | This property is used to enable/disable the fluentd file appender log |
31 | skava.log.fluentdHost | This property is used to set the hostname for fluentd server |
32 | skava.log.fluentdPort | This property is used to set the port for fluentd server |
33 | skava.log.fluentdPattern | This property is used to set the pattern for writing logs in fluentd server |
34 | skava.log.fluentdTagName | This property is used to set the tag name to be added in the logs |
35 | skava.cartOrchestrationProperties.unpaidAmountThrushhold | This property is used to set allowed un paid amount thrush hold for cart |
36 | skava.cache-control.loadCategory | This property holds the cache control header value to be returned for loadCategory call |
37 | skava.cache-control.loadProductList | This property holds the cache control header value to be returned for loadProductList call |
38 | skava.cache-control.loadProductById | This property holds the cache control header value to be returned for loadProductById call |
39 | skava.cache-control.loadSearchList | This property holds the cache control header value to be returned for loadSearchList call |
40 | skava.cache-control.loadSuggestions | This property holds the cache control header value to be returned for loadSuggestions call |
41 | skava.cache-control.loadProductBySemanticId | This property holds the cache control header value to be returned for loadProductBySemanticId call |
42 | skava.services.auth.contextPath | Microservice url whole url can be pointed here |
43 | skava.services.auth.url | Microservice url whole url can be pointed here |
44 | skava.services.auth.version | Microservice version |
45 | skava.services.user.contextPath | Microservice url whole url can be pointed here |
46 | skava.services.user.url | Microservice url whole url can be pointed here |
47 | skava.services.user.version | Microservice version |
48 | skava.services.cart.contextPath | Microservice url whole url can be pointed here |
49 | skava.services.cart.url | Microservice url whole url can be pointed here |
50 | skava.services.cart.version | Microservice version |
Showing 1 to 50 of 169 entries
Revision History
2024-07-12 | SD – Updated the ZK properties
2023-10-16 | Updated content by doc team