Interface VertxMetrics
-
public interface VertxMetrics extends Metrics, Measured
The main Vert.x metrics SPI which Vert.x will use internally. This interface serves two purposes, one to be called by Vert.x itself for events like verticles deployed, timers created, etc. The other to provide Vert.x with other metrics SPI's which will be used for specific components i.e.HttpServer
,EventBusMetrics
, etc.- Author:
- Nick Scavelli
-
-
Field Summary
-
Fields inherited from interface io.vertx.core.spi.metrics.Metrics
METRICS_ENABLED
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ClientMetrics<?,?,?>
createClientMetrics(SocketAddress remoteAddress, String type, String namespace)
Provides the client metrics SPI when a client has been created.default DatagramSocketMetrics
createDatagramSocketMetrics(DatagramSocketOptions options)
Provides the datagram/udp metrics SPI when a datagram socket is created.default EventBusMetrics
createEventBusMetrics()
Provides the event bus metrics SPI when the event bus is created.default HttpClientMetrics<?,?,?>
createHttpClientMetrics(HttpClientOptions options)
Provides the http client metrics SPI when an http client has been created.default HttpServerMetrics<?,?,?>
createHttpServerMetrics(HttpServerOptions options, SocketAddress localAddress)
Provides the http server metrics SPI when an http server is created.default TCPMetrics<?>
createNetClientMetrics(NetClientOptions options)
Provides the net client metrics SPI when a net client is created.default TCPMetrics<?>
createNetServerMetrics(NetServerOptions options, SocketAddress localAddress)
Provides the net server metrics SPI when a net server is created.default PoolMetrics<?,?>
createPoolMetrics(String type, String name, int maxSize)
Provides the pool metrics SPI.default void
vertxCreated(Vertx vertx)
Callback to signal when the Vertx instance is fully initialized.-
Methods inherited from interface io.vertx.core.metrics.Measured
isMetricsEnabled
-
-
-
-
Method Detail
-
createEventBusMetrics
default EventBusMetrics createEventBusMetrics()
Provides the event bus metrics SPI when the event bus is created.No specific thread and context can be expected when this method is called.
This method should be called only once.
- Returns:
- the event bus metrics SPI or
null
when metrics are disabled
-
createHttpServerMetrics
default HttpServerMetrics<?,?,?> createHttpServerMetrics(HttpServerOptions options, SocketAddress localAddress)
Provides the http server metrics SPI when an http server is created.No specific thread and context can be expected when this method is called.
Note: this method can be called more than one time for the same
localAddress
when a server is scaled, it is the responsibility of the metrics implementation to eventually merge metrics. In this case the providedserver
argument can be used to distinguish the differentHttpServerMetrics
instances.- Parameters:
options
- the options used to create theHttpServer
localAddress
- localAddress the local address the net socket is listening on- Returns:
- the http server metrics SPI or
null
when metrics are disabled
-
createClientMetrics
default ClientMetrics<?,?,?> createClientMetrics(SocketAddress remoteAddress, String type, String namespace)
Provides the client metrics SPI when a client has been created.No specific thread and context can be expected when this method is called.
- Parameters:
remoteAddress
- the server remote addresstype
- the metrics type, e.ghttp
orws
namespace
- an optional namespace for scoping the metrics- Returns:
- the client metrics SPI or
null
when metrics are disabled
-
createHttpClientMetrics
default HttpClientMetrics<?,?,?> createHttpClientMetrics(HttpClientOptions options)
Provides the http client metrics SPI when an http client has been created.No specific thread and context can be expected when this method is called.
- Parameters:
options
- the options used to create theHttpClient
- Returns:
- the http client metrics SPI or
null
when metrics are disabled
-
createNetServerMetrics
default TCPMetrics<?> createNetServerMetrics(NetServerOptions options, SocketAddress localAddress)
Provides the net server metrics SPI when a net server is created.No specific thread and context can be expected when this method is called.
Note: this method can be called more than one time for the same
localAddress
when a server is scaled, it is the responsibility of the metrics implementation to eventually merge metrics. In this case the providedserver
argument can be used to distinguish the differentTCPMetrics
instances.- Parameters:
options
- the options used to create theNetServer
localAddress
- localAddress the local address the net socket is listening on- Returns:
- the net server metrics SPI or
null
when metrics are disabled
-
createNetClientMetrics
default TCPMetrics<?> createNetClientMetrics(NetClientOptions options)
Provides the net client metrics SPI when a net client is created.No specific thread and context can be expected when this method is called.
- Parameters:
options
- the options used to create theNetClient
- Returns:
- the net client metrics SPI or
null
when metrics are disabled
-
createDatagramSocketMetrics
default DatagramSocketMetrics createDatagramSocketMetrics(DatagramSocketOptions options)
Provides the datagram/udp metrics SPI when a datagram socket is created.No specific thread and context can be expected when this method is called.
- Parameters:
options
- the options used to create theDatagramSocket
- Returns:
- the datagram metrics SPI or
null
when metrics are disabled
-
createPoolMetrics
default PoolMetrics<?,?> createPoolMetrics(String type, String name, int maxSize)
Provides the pool metrics SPI.- Parameters:
type
- the type of the pool e.g. worker, datasource, etc...name
- the name of the resource the inherent pool belongs tomaxSize
- the max size, or-1
if the number cannot be determined- Returns:
- the pool metrics SPI or
null
when metrics are disabled
-
vertxCreated
default void vertxCreated(Vertx vertx)
Callback to signal when the Vertx instance is fully initialized. Other methods can be called before this method when the instance is being constructed.- Parameters:
vertx
- the instance of Vertx
-
-