1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
//! Measure the number of in-flight requests.
//!
//! In-flight requests is the number of requests a service is currently processing. The processing
//! of a request starts when it is received by the service (`tower::Service::call` is called) and
//! is considered complete when the response body is consumed, dropped, or an error happens.
//!
//! # Example
//!
//! ```
//! use tower::{Service, ServiceExt, ServiceBuilder};
//! use tower_http::metrics::InFlightRequestsLayer;
//! use http::{Request, Response};
//! use bytes::Bytes;
//! use http_body_util::Full;
//! use std::{time::Duration, convert::Infallible};
//!
//! async fn handle(req: Request<Full<Bytes>>) -> Result<Response<Full<Bytes>>, Infallible> {
//! // ...
//! # Ok(Response::new(Full::default()))
//! }
//!
//! async fn update_in_flight_requests_metric(count: usize) {
//! // ...
//! }
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! // Create a `Layer` with an associated counter.
//! let (in_flight_requests_layer, counter) = InFlightRequestsLayer::pair();
//!
//! // Spawn a task that will receive the number of in-flight requests every 10 seconds.
//! tokio::spawn(
//! counter.run_emitter(Duration::from_secs(10), |count| async move {
//! update_in_flight_requests_metric(count).await;
//! }),
//! );
//!
//! let mut service = ServiceBuilder::new()
//! // Keep track of the number of in-flight requests. This will increment and decrement
//! // `counter` automatically.
//! .layer(in_flight_requests_layer)
//! .service_fn(handle);
//!
//! // Call the service.
//! let response = service
//! .ready()
//! .await?
//! .call(Request::new(Full::default()))
//! .await?;
//! # Ok(())
//! # }
//! ```
use http::{Request, Response};
use http_body::Body;
use pin_project_lite::pin_project;
use std::{
future::Future,
pin::Pin,
sync::{
atomic::{AtomicUsize, Ordering},
Arc,
},
task::{ready, Context, Poll},
time::Duration,
};
use tower_layer::Layer;
use tower_service::Service;
/// Layer for applying [`InFlightRequests`] which counts the number of in-flight requests.
///
/// See the [module docs](crate::metrics::in_flight_requests) for more details.
#[derive(Clone, Debug)]
pub struct InFlightRequestsLayer {
counter: InFlightRequestsCounter,
}
impl InFlightRequestsLayer {
/// Create a new `InFlightRequestsLayer` and its associated counter.
pub fn pair() -> (Self, InFlightRequestsCounter) {
let counter = InFlightRequestsCounter::new();
let layer = Self::new(counter.clone());
(layer, counter)
}
/// Create a new `InFlightRequestsLayer` that will update the given counter.
pub fn new(counter: InFlightRequestsCounter) -> Self {
Self { counter }
}
}
impl<S> Layer<S> for InFlightRequestsLayer {
type Service = InFlightRequests<S>;
fn layer(&self, inner: S) -> Self::Service {
InFlightRequests {
inner,
counter: self.counter.clone(),
}
}
}
/// Middleware that counts the number of in-flight requests.
///
/// See the [module docs](crate::metrics::in_flight_requests) for more details.
#[derive(Clone, Debug)]
pub struct InFlightRequests<S> {
inner: S,
counter: InFlightRequestsCounter,
}
impl<S> InFlightRequests<S> {
/// Create a new `InFlightRequests` and its associated counter.
pub fn pair(inner: S) -> (Self, InFlightRequestsCounter) {
let counter = InFlightRequestsCounter::new();
let service = Self::new(inner, counter.clone());
(service, counter)
}
/// Create a new `InFlightRequests` that will update the given counter.
pub fn new(inner: S, counter: InFlightRequestsCounter) -> Self {
Self { inner, counter }
}
define_inner_service_accessors!();
}
/// An atomic counter that keeps track of the number of in-flight requests.
///
/// This will normally combined with [`InFlightRequestsLayer`] or [`InFlightRequests`] which will
/// update the counter as requests arrive.
#[derive(Debug, Clone, Default)]
pub struct InFlightRequestsCounter {
count: Arc<AtomicUsize>,
}
impl InFlightRequestsCounter {
/// Create a new `InFlightRequestsCounter`.
pub fn new() -> Self {
Self::default()
}
/// Get the current number of in-flight requests.
pub fn get(&self) -> usize {
self.count.load(Ordering::Relaxed)
}
fn increment(&self) -> IncrementGuard {
self.count.fetch_add(1, Ordering::Relaxed);
IncrementGuard {
count: self.count.clone(),
}
}
/// Run a future every `interval` which receives the current number of in-flight requests.
///
/// This can be used to send the current count to your metrics system.
///
/// This function will loop forever so normally it is called with [`tokio::spawn`]:
///
/// ```rust,no_run
/// use tower_http::metrics::in_flight_requests::InFlightRequestsCounter;
/// use std::time::Duration;
///
/// let counter = InFlightRequestsCounter::new();
///
/// tokio::spawn(
/// counter.run_emitter(Duration::from_secs(10), |count: usize| async move {
/// // Send `count` to metrics system.
/// }),
/// );
/// ```
pub async fn run_emitter<F, Fut>(mut self, interval: Duration, mut emit: F)
where
F: FnMut(usize) -> Fut + Send + 'static,
Fut: Future<Output = ()> + Send,
{
let mut interval = tokio::time::interval(interval);
loop {
// if all producers have gone away we don't need to emit anymore
match Arc::try_unwrap(self.count) {
Ok(_) => return,
Err(shared_count) => {
self = Self {
count: shared_count,
}
}
}
interval.tick().await;
emit(self.get()).await;
}
}
}
struct IncrementGuard {
count: Arc<AtomicUsize>,
}
impl Drop for IncrementGuard {
fn drop(&mut self) {
self.count.fetch_sub(1, Ordering::Relaxed);
}
}
impl<S, R, ResBody> Service<Request<R>> for InFlightRequests<S>
where
S: Service<Request<R>, Response = Response<ResBody>>,
{
type Response = Response<ResponseBody<ResBody>>;
type Error = S::Error;
type Future = ResponseFuture<S::Future>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.inner.poll_ready(cx)
}
fn call(&mut self, req: Request<R>) -> Self::Future {
let guard = self.counter.increment();
ResponseFuture {
inner: self.inner.call(req),
guard: Some(guard),
}
}
}
pin_project! {
/// Response future for [`InFlightRequests`].
pub struct ResponseFuture<F> {
#[pin]
inner: F,
guard: Option<IncrementGuard>,
}
}
impl<F, B, E> Future for ResponseFuture<F>
where
F: Future<Output = Result<Response<B>, E>>,
{
type Output = Result<Response<ResponseBody<B>>, E>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.project();
let response = ready!(this.inner.poll(cx))?;
let guard = this.guard.take().unwrap();
let response = response.map(move |body| ResponseBody { inner: body, guard });
Poll::Ready(Ok(response))
}
}
pin_project! {
/// Response body for [`InFlightRequests`].
pub struct ResponseBody<B> {
#[pin]
inner: B,
guard: IncrementGuard,
}
}
impl<B> Body for ResponseBody<B>
where
B: Body,
{
type Data = B::Data;
type Error = B::Error;
#[inline]
fn poll_frame(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Result<http_body::Frame<Self::Data>, Self::Error>>> {
self.project().inner.poll_frame(cx)
}
#[inline]
fn is_end_stream(&self) -> bool {
self.inner.is_end_stream()
}
#[inline]
fn size_hint(&self) -> http_body::SizeHint {
self.inner.size_hint()
}
}
#[cfg(test)]
mod tests {
#[allow(unused_imports)]
use super::*;
use crate::test_helpers::Body;
use http::Request;
use tower::{BoxError, ServiceBuilder};
#[tokio::test]
async fn basic() {
let (in_flight_requests_layer, counter) = InFlightRequestsLayer::pair();
let mut service = ServiceBuilder::new()
.layer(in_flight_requests_layer)
.service_fn(echo);
assert_eq!(counter.get(), 0);
// driving service to ready shouldn't increment the counter
std::future::poll_fn(|cx| service.poll_ready(cx))
.await
.unwrap();
assert_eq!(counter.get(), 0);
// creating the response future should increment the count
let response_future = service.call(Request::new(Body::empty()));
assert_eq!(counter.get(), 1);
// count shouldn't decrement until the full body has been comsumed
let response = response_future.await.unwrap();
assert_eq!(counter.get(), 1);
let body = response.into_body();
crate::test_helpers::to_bytes(body).await.unwrap();
assert_eq!(counter.get(), 0);
}
async fn echo(req: Request<Body>) -> Result<Response<Body>, BoxError> {
Ok(Response::new(req.into_body()))
}
}