本文整理匯總了Java中io.vertx.core.VertxOptions.getMetricsOptions方法的典型用法代碼示例。如果您正苦於以下問題:Java VertxOptions.getMetricsOptions方法的具體用法?Java VertxOptions.getMetricsOptions怎麽用?Java VertxOptions.getMetricsOptions使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類io.vertx.core.VertxOptions
的用法示例。
在下文中一共展示了VertxOptions.getMetricsOptions方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: metrics
import io.vertx.core.VertxOptions; //導入方法依賴的package包/類
@Override
public final VertxMetrics metrics(@Nonnull final Vertx vertx, @Nonnull final VertxOptions options) {
final MetricsOptions metricsOptions = options.getMetricsOptions();
final StatfulMetricsOptions statfulMetricsOptions;
if (metricsOptions instanceof StatfulMetricsOptions) {
statfulMetricsOptions = (StatfulMetricsOptions) metricsOptions;
} else {
statfulMetricsOptions = new StatfulMetricsOptions();
}
// check if there is a configuration path set, if so, load configuration from file
final StatfulMetricsOptions effective;
String configPath = statfulMetricsOptions.getConfigPath();
if (Strings.isNullOrEmpty(configPath)) {
effective = statfulMetricsOptions;
} else {
effective = buildFromFile(vertx, configPath);
}
return new VertxMetricsImpl(vertx, effective);
}
示例2: metrics
import io.vertx.core.VertxOptions; //導入方法依賴的package包/類
@Override
public VertxMetrics metrics(Vertx vertx, VertxOptions options) {
MetricsOptions metricsOptions = options.getMetricsOptions();
VertxWarp10Options vertxWarp10Options;
if (metricsOptions instanceof VertxWarp10Options) {
vertxWarp10Options = (VertxWarp10Options) metricsOptions;
} else {
vertxWarp10Options = new VertxWarp10Options(metricsOptions.toJson());
}
return new VertxMetricsImpl(vertx, vertxWarp10Options);
}
示例3: asPrometheusOptions
import io.vertx.core.VertxOptions; //導入方法依賴的package包/類
private static @NotNull VertxPrometheusOptions asPrometheusOptions(@NotNull VertxOptions vertxOptions) {
final MetricsOptions metricsOptions = vertxOptions.getMetricsOptions();
return metricsOptions instanceof VertxPrometheusOptions
? (VertxPrometheusOptions) metricsOptions
: new VertxPrometheusOptions(metricsOptions.toJson());
}