All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.kotlin.ext.dropwizard.DropwizardMetricsOptions.kt Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
/*
 * Copyright 2019 Red Hat, Inc.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 *
 * The Eclipse Public License is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * The Apache License v2.0 is available at
 * http://www.opensource.org/licenses/apache2.0.php
 *
 * You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.kotlin.ext.dropwizard

import io.vertx.ext.dropwizard.DropwizardMetricsOptions
import io.vertx.ext.dropwizard.Match

/**
 * A function providing a DSL for building [io.vertx.ext.dropwizard.DropwizardMetricsOptions] objects.
 *
 * Vert.x Dropwizard metrics configuration.
 *
 * @param baseName  Set a custom baseName for metrics.
 * @param configPath  Set the path for a config file that contains options in JSON format, to be used to create a new options object. The file will be looked for on the file system first and then on the classpath if it's not found.
 * @param enabled  Set whether metrics will be enabled on the Vert.x instance.
 * @param factory  Programmatically set the metrics factory to be used when metrics are enabled. 

Only valid if = true.

Normally Vert.x will look on the classpath for a metrics factory implementation, but if you want to set one programmatically you can use this method. * @param jmxDomain Set the JMX domain to use when JMX metrics are enabled. * @param jmxEnabled Set whether JMX will be enabled on the Vert.x instance. * @param metricRegistry Set the optional metric registry used instead of the Dropwizard shared registry. * @param monitoredEventBusHandlers Add a monitored event bus handler. * @param monitoredHttpClientEndpoints Add an monitored http client endpoint. * @param monitoredHttpClientUris Add an monitored http client uri. * @param monitoredHttpServerRoutes Add an monitored http server route. * @param monitoredHttpServerUris Add an monitored http server uri. * @param registryName Set the name used for registering the metrics in the Dropwizard shared registry. * *

* NOTE: This function has been automatically generated from the [io.vertx.ext.dropwizard.DropwizardMetricsOptions original] using Vert.x codegen. */ fun dropwizardMetricsOptionsOf( baseName: String? = null, configPath: String? = null, enabled: Boolean? = null, factory: io.vertx.core.spi.VertxMetricsFactory? = null, jmxDomain: String? = null, jmxEnabled: Boolean? = null, metricRegistry: com.codahale.metrics.MetricRegistry? = null, monitoredEventBusHandlers: Iterable? = null, monitoredHttpClientEndpoints: Iterable? = null, monitoredHttpClientUris: Iterable? = null, monitoredHttpServerRoutes: Iterable? = null, monitoredHttpServerUris: Iterable? = null, registryName: String? = null): DropwizardMetricsOptions = io.vertx.ext.dropwizard.DropwizardMetricsOptions().apply { if (baseName != null) { this.setBaseName(baseName) } if (configPath != null) { this.setConfigPath(configPath) } if (enabled != null) { this.setEnabled(enabled) } if (factory != null) { this.setFactory(factory) } if (jmxDomain != null) { this.setJmxDomain(jmxDomain) } if (jmxEnabled != null) { this.setJmxEnabled(jmxEnabled) } if (metricRegistry != null) { this.setMetricRegistry(metricRegistry) } if (monitoredEventBusHandlers != null) { for (item in monitoredEventBusHandlers) { this.addMonitoredEventBusHandler(item) } } if (monitoredHttpClientEndpoints != null) { for (item in monitoredHttpClientEndpoints) { this.addMonitoredHttpClientEndpoint(item) } } if (monitoredHttpClientUris != null) { for (item in monitoredHttpClientUris) { this.addMonitoredHttpClientUri(item) } } if (monitoredHttpServerRoutes != null) { for (item in monitoredHttpServerRoutes) { this.addMonitoredHttpServerRoute(item) } } if (monitoredHttpServerUris != null) { for (item in monitoredHttpServerUris) { this.addMonitoredHttpServerUri(item) } } if (registryName != null) { this.setRegistryName(registryName) } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy