io.airlift.http.server.RequestStats Maven / Gradle / Ivy
/*
* Copyright 2010 Proofpoint, Inc.
*
* 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
*
* http://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 io.airlift.http.server;
import io.airlift.stats.CounterStat;
import io.airlift.stats.MeterStat;
import io.airlift.stats.TimedStat;
import io.airlift.units.Duration;
import org.weakref.jmx.Flatten;
import org.weakref.jmx.Managed;
import org.weakref.jmx.Nested;
import javax.inject.Inject;
public class RequestStats
{
private final CounterStat request;
private final TimedStat requestTime;
private final MeterStat readBytes;
private final MeterStat writtenBytes;
@Inject
public RequestStats()
{
request = new CounterStat();
requestTime = new TimedStat();
readBytes = new MeterStat();
writtenBytes = new MeterStat();
}
public void record(String method, int responseCode, long requestSizeInBytes, long responseSizeInBytes, Duration schedulingDelay, Duration requestProcessingTime)
{
request.update(1);
requestTime.addValue(requestProcessingTime);
readBytes.update(requestSizeInBytes);
writtenBytes.update(responseSizeInBytes);
}
@Managed
@Flatten
public CounterStat getRequest()
{
return request;
}
@Managed
@Nested
public TimedStat getRequestTime()
{
return requestTime;
}
@Managed
@Nested
public MeterStat getReadBytes()
{
return readBytes;
}
@Managed
@Nested
public MeterStat getWrittenBytes()
{
return writtenBytes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy