Skip to content
Snippets Groups Projects
Commit 9d2e3b38 authored by Maaz Ahmed's avatar Maaz Ahmed
Browse files

feat: keep_metric_names modifier

parent b7abb6ba
No related branches found
No related tags found
1 merge request!25Resolve "Add support for more features in query builder API"
Pipeline #14883 passed with stages
in 1 minute and 44 seconds
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
//! [`Metric`] and [`Scalar`] are the basic types used for building queries. //! [`Metric`] and [`Scalar`] are the basic types used for building queries.
//! For building complex queries involving operators, see module [`ops`]. //! For building complex queries involving operators, see module [`ops`].
use std::fmt::Display; use self::ops::Operable;
use crate::seal::Sealed; use crate::seal::Sealed;
use std::fmt::Display;
use self::ops::Operable; #[cfg(feature = "metricsql")]
use ops::modifiers::KeepNames;
pub mod fns; pub mod fns;
pub mod ops; pub mod ops;
...@@ -450,6 +451,14 @@ pub trait QueryExt: Operable { ...@@ -450,6 +451,14 @@ pub trait QueryExt: Operable {
{ {
SubQry::new(self, dur) SubQry::new(self, dur)
} }
#[cfg(feature = "metricsql")]
fn keep_metric_names(self) -> KeepNames<Self>
where
Self: Sized,
{
KeepNames(self)
}
} }
impl<T: Operable> QueryExt for T {} impl<T: Operable> QueryExt for T {}
......
use std::fmt::Display; use std::fmt::Display;
use crate::{query::IntoQuery, seal::Sealed};
use super::Operable;
#[derive(Debug, Clone, Default)] #[derive(Debug, Clone, Default)]
pub(crate) struct Mod<'a, M> { pub(crate) struct Mod<'a, M> {
mod_type: M, mod_type: M,
...@@ -114,3 +118,42 @@ impl Display for Mod<'_, AggrType> { ...@@ -114,3 +118,42 @@ impl Display for Mod<'_, AggrType> {
Ok(()) Ok(())
} }
} }
/// MetricsQL's `keep_metric_names` modifier
///
/// This modifier can only be applied using the `keep_metric_names` method made available by the [`QueryExt`](crate::query::QueryExt) trait.
#[cfg(feature = "metricsql")]
#[derive(Debug, Clone)]
pub struct KeepNames<E: Operable>(pub(crate) E);
#[cfg(feature = "metricsql")]
impl<E: Operable> Display for KeepNames<E> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{exp} keep_metric_names", exp = self.0)
}
}
#[cfg(feature = "metricsql")]
impl<E: Operable> Sealed for KeepNames<E> {}
#[cfg(feature = "metricsql")]
impl<E: Operable> Operable for KeepNames<E> {}
#[cfg(feature = "metricsql")]
impl<E: Operable> IntoQuery for KeepNames<E> {
type Target = String;
fn into_query(self) -> Self::Target {
self.to_string()
}
}
#[cfg(test)]
mod tests {
use crate::query::{Metric, QueryExt};
#[cfg(feature = "metricsql")]
#[test]
fn keep_names() {
let qry = Metric::new("metric").keep_metric_names();
assert_eq!(qry.to_string(), "metric keep_metric_names");
}
}
use mquery::query::{ use mquery::query::{
ops::{Arithmetic, Comparison, Logical}, ops::{Arithmetic, Comparison, Logical},
Metric, Scalar, Metric, QueryExt, Scalar,
}; };
mod utils; mod utils;
...@@ -89,3 +89,12 @@ async fn logical_set() { ...@@ -89,3 +89,12 @@ async fn logical_set() {
.unless(Metric::new("fourth_metric")); .unless(Metric::new("fourth_metric"));
utils::send_query(query).await.unwrap(); utils::send_query(query).await.unwrap();
} }
#[cfg(feature = "metricsql")]
#[tokio::test]
async fn keep_metric_names_mod() {
let query = Metric::new("metric")
.add(Metric::new("metric2"))
.keep_metric_names();
utils::send_query(query).await.unwrap();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment