additional-spring-configuration-metadata.json 1.23 KB
Newer Older
1
{"groups": [
2
 
3 4 5 6 7 8 9 10
],"properties": [
  {
    "name": "spring.boot.admin.hazelcast.enabled",
    "type": "java.lang.Boolean",
    "description": "Enable Hazelcast support.",
    "defaultValue": "true"
  },
  {
11
    "name": "spring.boot.admin.hazelcast.application-store",
12
    "type": "java.lang.String",
13
    "description": "Name of backing Hazelcast-Map for storing applications",
14 15
    "defaultValue": "spring-boot-admin-application-store"
  },
16 17 18 19 20 21
  {
    "name": "spring.boot.admin.hazelcast.map",
    "type": "java.lang.String",
    "description": "Name of backing Hazelcast-List for storing the journal",
    "defaultValue": "spring-boot-admin-event-store"
  },
22 23 24 25 26 27 28 29 30 31 32
  {
    "name": "spring.boot.admin.discovery.enabled",
    "type": "java.lang.Boolean",
    "description": "Enable Spring Cloud Discovery support.",
    "defaultValue": "true"
  },
  {
    "name": "spring.boot.admin.discovery.management.context-path",
    "type": "java.lang.String",
    "description": "management-path suffix for discovered applications",
    "defaultValue": ""
33 34 35 36 37 38
  },
  {
    "name": "spring.boot.admin.discovery.monitor.period",
    "type": "long",
    "description": "time interval in ms to update the status of applications with expired statusInfo",
    "defaultValue": "10000"
39
  }
40
]}