blob: 83482b23f2b405c7a24362534a1fab873c453b53 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.builder.endpoint.dsl;
import javax.annotation.Generated;
import org.apache.camel.builder.EndpointConsumerBuilder;
import org.apache.camel.builder.EndpointProducerBuilder;
import org.apache.camel.builder.endpoint.AbstractEndpointBuilder;
/**
* Camel metrics exposed with Eclipse MicroProfile Metrics
*
* Generated by camel-package-maven-plugin - do not edit this file!
*/
@Generated("org.apache.camel.maven.packaging.EndpointDslMojo")
public interface MicroProfileMetricsEndpointBuilderFactory {
/**
* Builder for endpoint for the MicroProfile Metrics component.
*/
public interface MicroProfileMetricsEndpointBuilder
extends
EndpointProducerBuilder {
default AdvancedMicroProfileMetricsEndpointBuilder advanced() {
return (AdvancedMicroProfileMetricsEndpointBuilder) this;
}
/**
* The action to use when using the Timer metric type.
*
* The option is a: <code>java.lang.String</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder action(String action) {
doSetProperty("action", action);
return this;
}
/**
* The amount to increment to use when using the Counter metric type.
*
* The option is a: <code>java.lang.Long</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder counterIncrement(
Long counterIncrement) {
doSetProperty("counterIncrement", counterIncrement);
return this;
}
/**
* The amount to increment to use when using the Counter metric type.
*
* The option will be converted to a <code>java.lang.Long</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder counterIncrement(
String counterIncrement) {
doSetProperty("counterIncrement", counterIncrement);
return this;
}
/**
* Sets a description within the metric metadata.
*
* The option is a: <code>java.lang.String</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder description(
String description) {
doSetProperty("description", description);
return this;
}
/**
* Sets a display name within the metric metadata.
*
* The option is a: <code>java.lang.String</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder displayName(
String displayName) {
doSetProperty("displayName", displayName);
return this;
}
/**
* Decrements a gauge value when using the ConcurrentGauge metric type.
*
* The option is a: <code>java.lang.Boolean</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder gaugeDecrement(
Boolean gaugeDecrement) {
doSetProperty("gaugeDecrement", gaugeDecrement);
return this;
}
/**
* Decrements a gauge value when using the ConcurrentGauge metric type.
*
* The option will be converted to a <code>java.lang.Boolean</code>
* type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder gaugeDecrement(
String gaugeDecrement) {
doSetProperty("gaugeDecrement", gaugeDecrement);
return this;
}
/**
* Increments a gauge value when using the ConcurrentGauge metric type.
*
* The option is a: <code>java.lang.Boolean</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder gaugeIncrement(
Boolean gaugeIncrement) {
doSetProperty("gaugeIncrement", gaugeIncrement);
return this;
}
/**
* Increments a gauge value when using the ConcurrentGauge metric type.
*
* The option will be converted to a <code>java.lang.Boolean</code>
* type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder gaugeIncrement(
String gaugeIncrement) {
doSetProperty("gaugeIncrement", gaugeIncrement);
return this;
}
/**
* Sets the gauge value when using the Gauge metric type.
*
* The option is a: <code>java.lang.Number</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder gaugeValue(Number gaugeValue) {
doSetProperty("gaugeValue", gaugeValue);
return this;
}
/**
* Sets the gauge value when using the Gauge metric type.
*
* The option will be converted to a <code>java.lang.Number</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder gaugeValue(String gaugeValue) {
doSetProperty("gaugeValue", gaugeValue);
return this;
}
/**
* Whether the producer should be started lazy (on the first message).
* By starting lazy you can use this to allow CamelContext and routes to
* startup in situations where a producer may otherwise fail during
* starting and cause the route to fail being started. By deferring this
* startup to be lazy then the startup failure can be handled during
* routing messages via Camel's routing error handlers. Beware that when
* the first message is processed then creating and starting the
* producer may take a little time and prolong the total processing time
* of the processing.
*
* The option is a: <code>boolean</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder lazyStartProducer(
boolean lazyStartProducer) {
doSetProperty("lazyStartProducer", lazyStartProducer);
return this;
}
/**
* Whether the producer should be started lazy (on the first message).
* By starting lazy you can use this to allow CamelContext and routes to
* startup in situations where a producer may otherwise fail during
* starting and cause the route to fail being started. By deferring this
* startup to be lazy then the startup failure can be handled during
* routing messages via Camel's routing error handlers. Beware that when
* the first message is processed then creating and starting the
* producer may take a little time and prolong the total processing time
* of the processing.
*
* The option will be converted to a <code>boolean</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder lazyStartProducer(
String lazyStartProducer) {
doSetProperty("lazyStartProducer", lazyStartProducer);
return this;
}
/**
* The mark value to set when using the Meter metric type.
*
* The option is a: <code>java.lang.Long</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder mark(Long mark) {
doSetProperty("mark", mark);
return this;
}
/**
* The mark value to set when using the Meter metric type.
*
* The option will be converted to a <code>java.lang.Long</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder mark(String mark) {
doSetProperty("mark", mark);
return this;
}
/**
* Sets a metric unit within the metric metadata.
*
* The option is a: <code>java.lang.String</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder metricUnit(String metricUnit) {
doSetProperty("metricUnit", metricUnit);
return this;
}
/**
* Comma delimited list of tags associated with the metric in the format
* tagName=tagValue.
*
* The option is a: <code>java.lang.String</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder tags(String tags) {
doSetProperty("tags", tags);
return this;
}
/**
* The value to set when using the Histogram metric type.
*
* The option is a: <code>java.lang.Long</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder value(Long value) {
doSetProperty("value", value);
return this;
}
/**
* The value to set when using the Histogram metric type.
*
* The option will be converted to a <code>java.lang.Long</code> type.
*
* Group: producer
*/
default MicroProfileMetricsEndpointBuilder value(String value) {
doSetProperty("value", value);
return this;
}
}
/**
* Advanced builder for endpoint for the MicroProfile Metrics component.
*/
public interface AdvancedMicroProfileMetricsEndpointBuilder
extends
EndpointProducerBuilder {
default MicroProfileMetricsEndpointBuilder basic() {
return (MicroProfileMetricsEndpointBuilder) this;
}
/**
* Whether the endpoint should use basic property binding (Camel 2.x) or
* the newer property binding with additional capabilities.
*
* The option is a: <code>boolean</code> type.
*
* Group: advanced
*/
default AdvancedMicroProfileMetricsEndpointBuilder basicPropertyBinding(
boolean basicPropertyBinding) {
doSetProperty("basicPropertyBinding", basicPropertyBinding);
return this;
}
/**
* Whether the endpoint should use basic property binding (Camel 2.x) or
* the newer property binding with additional capabilities.
*
* The option will be converted to a <code>boolean</code> type.
*
* Group: advanced
*/
default AdvancedMicroProfileMetricsEndpointBuilder basicPropertyBinding(
String basicPropertyBinding) {
doSetProperty("basicPropertyBinding", basicPropertyBinding);
return this;
}
/**
* Sets whether synchronous processing should be strictly used, or Camel
* is allowed to use asynchronous processing (if supported).
*
* The option is a: <code>boolean</code> type.
*
* Group: advanced
*/
default AdvancedMicroProfileMetricsEndpointBuilder synchronous(
boolean synchronous) {
doSetProperty("synchronous", synchronous);
return this;
}
/**
* Sets whether synchronous processing should be strictly used, or Camel
* is allowed to use asynchronous processing (if supported).
*
* The option will be converted to a <code>boolean</code> type.
*
* Group: advanced
*/
default AdvancedMicroProfileMetricsEndpointBuilder synchronous(
String synchronous) {
doSetProperty("synchronous", synchronous);
return this;
}
}
/**
* MicroProfile Metrics (camel-microprofile-metrics)
* Camel metrics exposed with Eclipse MicroProfile Metrics
*
* Category: monitoring
* Available as of version: 3.0
* Maven coordinates: org.apache.camel:camel-microprofile-metrics
*
* Syntax: <code>microprofile-metrics:metricType:metricName</code>
*
* Path parameter: metricType (required)
* Metric type
* The value can be one of: CONCURRENT_GAUGE, COUNTER, GAUGE, METERED,
* HISTOGRAM, TIMER, INVALID
*
* Path parameter: metricName (required)
* Metric name
*/
default MicroProfileMetricsEndpointBuilder microprofileMetrics(String path) {
class MicroProfileMetricsEndpointBuilderImpl extends AbstractEndpointBuilder implements MicroProfileMetricsEndpointBuilder, AdvancedMicroProfileMetricsEndpointBuilder {
public MicroProfileMetricsEndpointBuilderImpl(String path) {
super("microprofile-metrics", path);
}
}
return new MicroProfileMetricsEndpointBuilderImpl(path);
}
}