Skip to content
Merged
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
Expand Up @@ -101,7 +101,7 @@
{
"name": "camel.metrics.log-metrics-on-shutdown-filters",
"type": "java.lang.String",
"description": "List of metrics (comma separated) to log when application is shutting down. You can use `*` character to log any metrics containing the wildcard, for example `camel.exchanges.*` (default to all metrics available).",
"description": "List of metrics (comma separated) to log when application is shutting down. You can use a wildcard to log any metrics matching a pattern, for example `camel.exchanges.*` (default to all metrics available).",
"sourceType": "org.apache.camel.component.micrometer.springboot.metrics.CamelMetricsConfiguration"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public class CamelMetricsConfiguration {
private boolean logMetricsOnShutdown = false;

/**
* List of metrics (comma separated) to log when application is shutting down. You can use `*` character to log any
* metrics containing the wildcard, for example `camel.exchanges.*` (default to all metrics available).
* List of metrics (comma separated) to log when application is shutting down. You can use a wildcard to log any
* metrics matching a pattern, for example `camel.exchanges.*` (default to all metrics available).
*/
private String logMetricsOnShutdownFilters;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The starter supports 17 options, which are listed below.
| camel.metrics.enable-route-event-notifier | Set whether to enable the MicrometerRouteEventNotifier for capturing metrics on the total number of routes and total number of routes running. | true | Boolean
| camel.metrics.enable-route-policy | Set whether to enable the MicrometerRoutePolicyFactory for capturing metrics on route processing times. | true | Boolean
| camel.metrics.log-metrics-on-shutdown | Log metrics when application is shutting down. (default, `false`). | false | Boolean
| camel.metrics.log-metrics-on-shutdown-filters | List of metrics (comma separated) to log when application is shutting down. You can use `*` character to log any metrics containing the wildcard, for example `camel.exchanges.*` (default to all metrics available). | | String
| camel.metrics.log-metrics-on-shutdown-filters | List of metrics (comma separated) to log when application is shutting down. You can use a wildcard to log any metrics matching a pattern, for example `camel.exchanges.*` (default to all metrics available). | | String
| camel.metrics.naming-strategy | Controls the name style to use for metrics. Default = uses micrometer naming convention. Legacy = uses the classic naming style (camelCase) | default | String
| camel.metrics.route-policy-exclude-pattern | Pattern to exclude routes (by id) to capture. Multiple route ids can be separated by comma. | | String
| camel.metrics.route-policy-level | Sets the level of information to capture. Possible values are all,route,context. all = both context and routes. route = routes only. context = camel context only. | all | String
Expand Down