Package reactor.netty.channel
Class MeterKey
java.lang.Object
reactor.netty.channel.MeterKey
Contains meters' tags values. Used as a key when caching meters.
- Since:
- 0.9.3
- Author:
- Violeta Georgieva
-
Constructor Summary
ConstructorsConstructorDescriptionMeterKey
(@Nullable String uri, @Nullable String remoteAddress, @Nullable String method, @Nullable String status) Deprecated.as of 1.1.17.MeterKey
(@Nullable String uri, @Nullable String remoteAddress, @Nullable String proxyAddress, @Nullable String method, @Nullable String status) Creates a new meter key. -
Method Summary
-
Constructor Details
-
MeterKey
@Deprecated public MeterKey(@Nullable String uri, @Nullable String remoteAddress, @Nullable String method, @Nullable String status) Deprecated.as of 1.1.17. Prefer usingMeterKey(String, String, String, String, String)
constructor. This method will be removed in version 1.3.0.Creates a new meter key.- Parameters:
uri
- the requested URIremoteAddress
- the remote addressmethod
- the HTTP methodstatus
- the HTTP status
-
MeterKey
public MeterKey(@Nullable String uri, @Nullable String remoteAddress, @Nullable String proxyAddress, @Nullable String method, @Nullable String status) Creates a new meter key.- Parameters:
uri
- the requested URIremoteAddress
- the remote addressproxyAddress
- the proxy addressmethod
- the HTTP methodstatus
- the HTTP status- Since:
- 1.1.17
-
-
Method Details