aboutsummaryrefslogblamecommitdiff
path: root/src/util/metrics.rs
blob: 1b05eabe93b8778439c292c1e01371a5e975cba7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                    
              
 
                                                          



                                  




                                           



                                                                                                      


                                          

                        




                                           


                                                              



                                                                                         
                           

                        







                                                                                                       

                        

         





                                                   
use std::time::SystemTime;

use futures::{future::BoxFuture, Future, FutureExt};
use rand::Rng;

use opentelemetry::{metrics::*, trace::TraceId, KeyValue};

pub trait RecordDuration<'a>: 'a {
	type Output;

	fn record_duration(
		self,
		r: &'a ValueRecorder<f64>,
		attributes: &'a [KeyValue],
	) -> BoxFuture<'a, Self::Output>;
	fn bound_record_duration(self, r: &'a BoundValueRecorder<f64>) -> BoxFuture<'a, Self::Output>;
}

impl<'a, T, O> RecordDuration<'a> for T
where
	T: Future<Output = O> + Send + 'a,
{
	type Output = O;

	fn record_duration(
		self,
		r: &'a ValueRecorder<f64>,
		attributes: &'a [KeyValue],
	) -> BoxFuture<'a, Self::Output> {
		async move {
			let request_start = SystemTime::now();
			let res = self.await;
			r.record(
				request_start.elapsed().map_or(0.0, |d| d.as_secs_f64()),
				attributes,
			);
			res
		}
		.boxed()
	}

	fn bound_record_duration(self, r: &'a BoundValueRecorder<f64>) -> BoxFuture<'a, Self::Output> {
		async move {
			let request_start = SystemTime::now();
			let res = self.await;
			r.record(request_start.elapsed().map_or(0.0, |d| d.as_secs_f64()));
			res
		}
		.boxed()
	}
}

// ----

pub fn gen_trace_id() -> TraceId {
	rand::thread_rng().gen::<[u8; 16]>().into()
}