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 @@ -27,7 +27,7 @@
"metricsRegistry": { "kind": "property", "displayName": "Metrics Registry", "group": "advanced", "label": "advanced", "required": false, "type": "object", "javaType": "io.micrometer.core.instrument.MeterRegistry", "deprecated": false, "autowired": false, "secret": false, "description": "To use a custom configured MetricRegistry." }
},
"properties": {
"metricsType": { "kind": "path", "displayName": "Metrics Type", "group": "producer", "label": "", "required": true, "type": "object", "javaType": "io.micrometer.core.instrument.Meter.Type", "enum": [ "COUNTER", "GAUGE", "LONG_TASK_TIMER", "TIMER", "DISTRIBUTION_SUMMARY", "OTHER" ], "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "description": "Type of metrics" },
"metricsType": { "kind": "path", "displayName": "Metrics Type", "group": "producer", "label": "", "required": true, "type": "object", "javaType": "io.micrometer.core.instrument.Meter.Type", "enum": [ "counter", "distribution_summary", "timer" ], "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "description": "Type of metrics" },
"metricsName": { "kind": "path", "displayName": "Metrics Name", "group": "producer", "label": "", "required": true, "type": "string", "javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "description": "Name of metrics" },
"tags": { "kind": "path", "displayName": "Tags", "group": "producer", "label": "", "required": false, "type": "object", "javaType": "java.lang.Iterable<io.micrometer.core.instrument.Tag>", "deprecated": false, "autowired": false, "secret": false, "description": "Tags of metrics" },
"action": { "kind": "parameter", "displayName": "Action", "group": "producer", "label": "", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Action expression when using timer type" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"metricsRegistry": { "kind": "property", "displayName": "Metrics Registry", "group": "advanced", "label": "advanced", "required": false, "type": "object", "javaType": "io.micrometer.core.instrument.MeterRegistry", "deprecated": false, "autowired": false, "secret": false, "description": "To use a custom configured MetricRegistry." }
},
"properties": {
"metricsType": { "kind": "path", "displayName": "Metrics Type", "group": "producer", "label": "", "required": true, "type": "object", "javaType": "io.micrometer.core.instrument.Meter.Type", "enum": [ "COUNTER", "GAUGE", "LONG_TASK_TIMER", "TIMER", "DISTRIBUTION_SUMMARY", "OTHER" ], "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "description": "Type of metrics" },
"metricsType": { "kind": "path", "displayName": "Metrics Type", "group": "producer", "label": "", "required": true, "type": "object", "javaType": "io.micrometer.core.instrument.Meter.Type", "enum": [ "counter", "distribution_summary", "timer" ], "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "description": "Type of metrics" },
"metricsName": { "kind": "path", "displayName": "Metrics Name", "group": "producer", "label": "", "required": true, "type": "string", "javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "description": "Name of metrics" },
"tags": { "kind": "path", "displayName": "Tags", "group": "producer", "label": "", "required": false, "type": "object", "javaType": "java.lang.Iterable<io.micrometer.core.instrument.Tag>", "deprecated": false, "autowired": false, "secret": false, "description": "Tags of metrics" },
"action": { "kind": "parameter", "displayName": "Action", "group": "producer", "label": "", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Action expression when using timer type" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10208,8 +10208,8 @@ public static org.apache.camel.builder.endpoint.dsl.MetricsEndpointBuilderFactor
*
* Path parameter: metricsType (required)
* Type of metrics
* There are 6 enums and the value can be one of: COUNTER, GAUGE,
* LONG_TASK_TIMER, TIMER, DISTRIBUTION_SUMMARY, OTHER
* There are 3 enums and the value can be one of: counter,
* distribution_summary, timer
*
* Path parameter: metricsName (required)
* Name of metrics
Expand Down Expand Up @@ -10237,8 +10237,8 @@ public static org.apache.camel.builder.endpoint.dsl.MicrometerEndpointBuilderFac
*
* Path parameter: metricsType (required)
* Type of metrics
* There are 6 enums and the value can be one of: COUNTER, GAUGE,
* LONG_TASK_TIMER, TIMER, DISTRIBUTION_SUMMARY, OTHER
* There are 3 enums and the value can be one of: counter,
* distribution_summary, timer
*
* Path parameter: metricsName (required)
* Name of metrics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ public interface MicrometerBuilders {
*
* Path parameter: metricsType (required)
* Type of metrics
* There are 6 enums and the value can be one of: COUNTER, GAUGE,
* LONG_TASK_TIMER, TIMER, DISTRIBUTION_SUMMARY, OTHER
* There are 3 enums and the value can be one of: counter,
* distribution_summary, timer
*
* Path parameter: metricsName (required)
* Name of metrics
Expand All @@ -186,8 +186,8 @@ default MicrometerEndpointBuilder micrometer(String path) {
*
* Path parameter: metricsType (required)
* Type of metrics
* There are 6 enums and the value can be one of: COUNTER, GAUGE,
* LONG_TASK_TIMER, TIMER, DISTRIBUTION_SUMMARY, OTHER
* There are 3 enums and the value can be one of: counter,
* distribution_summary, timer
*
* Path parameter: metricsName (required)
* Name of metrics
Expand Down