當前位置: 首頁>>代碼示例>>Java>>正文


Java VertxOptions.getMetricsOptions方法代碼示例

本文整理匯總了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);
}
 
開發者ID:statful,項目名稱:statful-client-vertx,代碼行數:23,代碼來源:StatfulMetricsFactoryImpl.java

示例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);
}
 
開發者ID:slambour,項目名稱:vertx-warp10-metrics,代碼行數:12,代碼來源:VertxMetricsFactoryImpl.java

示例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());
}
 
開發者ID:nolequen,項目名稱:vertx-prometheus-metrics,代碼行數:7,代碼來源:VertxPrometheusMetricsFactory.java


注:本文中的io.vertx.core.VertxOptions.getMetricsOptions方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。