Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"groups": [
{
"name": "sofa.boot.actuator.health",
"type": "com.alipay.sofa.boot.actuator.autoconfigure.health.HealthProperties",
"description": "Configuration for SOFABoot health checks.",
"sourceType": "com.alipay.sofa.boot.actuator.autoconfigure.health.HealthProperties"
}
],
"properties": [
{
"name": "sofa.boot.actuator.health.parallel-check",
"type": "java.lang.Boolean",
"description": "Whether to perform health checks in parallel to speed up startup.",
"defaultValue": true
},
{
"name": "sofa.boot.actuator.health.global-health-checker-timeout",
"type": "java.lang.Integer",
"description": "Global timeout for health checks in milliseconds.",
"defaultValue": 60000
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"groups": [
{
"name": "sofa.boot.rpc",
"type": "com.alipay.sofa.boot.autoconfigure.rpc.SofaBootRpcProperties",
"description": "SOFA RPC configuration properties.",
"sourceType": "com.alipay.sofa.boot.autoconfigure.rpc.SofaBootRpcProperties"
}
],
"properties": [
{
"name": "sofa.boot.rpc.bolt-port",
"type": "java.lang.Integer",
"description": "Bolt protocol listening port for RPC service calls.",
"defaultValue": 12200
},
{
"name": "sofa.boot.rpc.bolt-thread-pool-core-size",
"type": "java.lang.Integer",
"description": "Core thread pool size for Bolt.",
"defaultValue": 20
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"groups": [
{
"name": "sofa.boot.ark",
"type": "com.alipay.sofa.boot.ark.SofaArkProperties",
"description": "SOFAArk modularity configuration.",
"sourceType": "com.alipay.sofa.boot.ark.SofaArkProperties"
}
],
"properties": [
{
"name": "sofa.boot.ark.enabled",
"type": "java.lang.Boolean",
"description": "Enable or disable SOFAArk features.",
"defaultValue": true
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"groups": [
{
"name": "sofa.boot.tracer",
"type": "com.alipay.sofa.tracer.boot.properties.SofaTracerProperties",
"description": "SOFATracer configuration properties.",
"sourceType": "com.alipay.sofa.tracer.boot.properties.SofaTracerProperties"
}
],
"properties": [
{
"name": "sofa.boot.tracer.disable",
"type": "java.lang.Boolean",
"description": "Whether to disable all SOFA tracer logs.",
"defaultValue": false
}
]
}
Loading