-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from zalando/feature/configuration-metadata
Added spring configuration metadata file
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...ng-boot-starter/src/main/resources/META-INF/additional-spring-configuration-metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"hints": [], | ||
"groups": [ | ||
], | ||
"properties": [ | ||
{ | ||
"name": "tracer.filter.enabled", | ||
"type": "java.lang.Boolean", | ||
"defaultValue": true, | ||
"description": "Enables/disables servlet filter support." | ||
}, | ||
{ | ||
"name": "tracer.aspect.enabled", | ||
"type": "java.lang.Boolean", | ||
"defaultValue": true, | ||
"description": "Enables/disables AOP support for @Traced." | ||
}, | ||
{ | ||
"name": "tracer.mdc.enabled", | ||
"type": "java.lang.Boolean", | ||
"defaultValue": true, | ||
"description": "Enables/disables support for Slf4j's MDC." | ||
}, | ||
{ | ||
"name": "tracer.logging.enabled", | ||
"type": "java.lang.Boolean", | ||
"defaultValue": true, | ||
"description": "Enables/disables logging of traces being started and stopped." | ||
}, | ||
{ | ||
"name": "tracer.scheduling.enabled", | ||
"type": "java.lang.Boolean", | ||
"defaultValue": true, | ||
"description": "Enables/disables @Scheduled support." | ||
}, | ||
{ | ||
"name": "tracer.async.enabled", | ||
"type": "java.lang.Boolean", | ||
"defaultValue": true, | ||
"description": "Enables/disables @Async support." | ||
}, | ||
{ | ||
"name": "tracer.scheduling.pool-size", | ||
"type": "java.lang.Integer", | ||
"defaultValue": 0, | ||
"description": "Specifies the thread pool size for the task scheduler, if no scheduler was provided. Defaults to number of processors." | ||
} | ||
] | ||
} |