
reactor.netty.http.server.HttpServerMetricsHandler Maven / Gradle / Ivy
/*
* Copyright (c) 2011-Present VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package reactor.netty.http.server;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufHolder;
import io.netty.channel.ChannelDuplexHandler;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelPromise;
import io.netty.handler.codec.http.HttpRequest;
import io.netty.handler.codec.http.HttpResponse;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.netty.handler.codec.http.LastHttpContent;
import reactor.netty.channel.ChannelOperations;
import reactor.util.annotation.Nullable;
import java.time.Duration;
import java.util.function.Function;
/**
* @author Violeta Georgieva
*/
final class HttpServerMetricsHandler extends ChannelDuplexHandler {
long dataReceived;
long dataSent;
long dataReceivedTime;
long dataSentTime;
final HttpServerMetricsRecorder recorder;
final Function uriTagValue;
HttpServerMetricsHandler(HttpServerMetricsRecorder recorder, @Nullable Function uriTagValue) {
this.recorder = recorder;
this.uriTagValue = uriTagValue;
}
@Override
@SuppressWarnings("FutureReturnValueIgnored")
public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) {
if (msg instanceof HttpResponse) {
if (((HttpResponse) msg).status().equals(HttpResponseStatus.CONTINUE)) {
//"FutureReturnValueIgnored" this is deliberate
ctx.write(msg, promise);
return;
}
dataSentTime = System.nanoTime();
}
if (msg instanceof ByteBufHolder) {
dataSent += ((ByteBufHolder) msg).content().readableBytes();
}
else if (msg instanceof ByteBuf) {
dataSent += ((ByteBuf) msg).readableBytes();
}
if (msg instanceof LastHttpContent) {
promise.addListener(future -> {
ChannelOperations,?> channelOps = ChannelOperations.get(ctx.channel());
if (channelOps instanceof HttpServerOperations) {
HttpServerOperations ops = (HttpServerOperations) channelOps;
String path = uriTagValue == null ? ops.path : uriTagValue.apply(ops.path);
String method = ops.method().name();
String status = ops.status().codeAsText().toString();
recorder.recordDataSentTime(
path, method, status,
Duration.ofNanos(System.nanoTime() - dataSentTime));
if (dataReceivedTime != 0) {
recorder.recordResponseTime(
path, method, status,
Duration.ofNanos(System.nanoTime() - dataReceivedTime));
}
else {
recorder.recordResponseTime(
path, method, status,
Duration.ofNanos(System.nanoTime() - dataSentTime));
}
// Always take the remote address from the operations in order to consider proxy information
recorder.recordDataSent(ops.remoteAddress(), path, dataSent);
dataSent = 0;
}
});
}
//"FutureReturnValueIgnored" this is deliberate
ctx.write(msg, promise);
}
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) {
if (msg instanceof HttpRequest) {
dataReceivedTime = System.nanoTime();
}
if (msg instanceof ByteBufHolder) {
dataReceived += ((ByteBufHolder) msg).content().readableBytes();
}
else if (msg instanceof ByteBuf) {
dataReceived += ((ByteBuf) msg).readableBytes();
}
if (msg instanceof LastHttpContent) {
ChannelOperations,?> channelOps = ChannelOperations.get(ctx.channel());
if (channelOps instanceof HttpServerOperations) {
HttpServerOperations ops = (HttpServerOperations) channelOps;
String path = uriTagValue == null ? ops.path : uriTagValue.apply(ops.path);
String method = ops.method().name();
recorder.recordDataReceivedTime(path, method, Duration.ofNanos(System.nanoTime() - dataReceivedTime));
// Always take the remote address from the operations in order to consider proxy information
recorder.recordDataReceived(ops.remoteAddress(), path, dataReceived);
}
dataReceived = 0;
}
ctx.fireChannelRead(msg);
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
ChannelOperations,?> channelOps = ChannelOperations.get(ctx.channel());
if (channelOps instanceof HttpServerOperations) {
HttpServerOperations ops = (HttpServerOperations) channelOps;
// Always take the remote address from the operations in order to consider proxy information
recorder.incrementErrorsCount(ops.remoteAddress(),
uriTagValue == null ? ops.path : uriTagValue.apply(ops.path));
}
ctx.fireExceptionCaught(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy