本文整理汇总了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());
}