additional-spring-configuration-metadata.json 1.24 KB
Newer Older
1 2 3
{"groups": [
  {
    "name": "spring.boot.admin.hazelcast",
4
    "sourceType": "de.codecentric.boot.admin.config.HazelcastStoreConfiguration"
5 6 7
  },
  {
    "name": "spring.boot.admin.discovery",
8
    "sourceType": "de.codecentric.boot.admin.config.DiscoveryClientConfiguration"
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
  }
],"properties": [
  {
    "name": "spring.boot.admin.hazelcast.enabled",
    "type": "java.lang.Boolean",
    "description": "Enable Hazelcast support.",
    "defaultValue": "true"
  },
  {
    "name": "spring.boot.admin.hazelcast.map",
    "type": "java.lang.String",
    "description": "Name of backing Hazelcast-Map",
    "defaultValue": "spring-boot-admin-application-store"
  },
  {
    "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": ""
34 35 36 37 38 39
  },
  {
    "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"
40
  }
41
]}