Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mquery
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Subconscious Compute (Open)
mquery
Commits
9d2e3b38
Commit
9d2e3b38
authored
1 year ago
by
Maaz Ahmed
Browse files
Options
Downloads
Patches
Plain Diff
feat: keep_metric_names modifier
parent
b7abb6ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!25
Resolve "Add support for more features in query builder API"
Pipeline
#14883
passed with stages
in 1 minute and 44 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/query/mod.rs
+12
-3
12 additions, 3 deletions
src/query/mod.rs
src/query/ops/modifiers.rs
+43
-0
43 additions, 0 deletions
src/query/ops/modifiers.rs
tests/operators.rs
+10
-1
10 additions, 1 deletion
tests/operators.rs
with
65 additions
and
4 deletions
src/query/mod.rs
+
12
−
3
View file @
9d2e3b38
...
@@ -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
{}
...
...
This diff is collapsed.
Click to expand it.
src/query/ops/modifiers.rs
+
43
−
0
View file @
9d2e3b38
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"
);
}
}
This diff is collapsed.
Click to expand it.
tests/operators.rs
+
10
−
1
View file @
9d2e3b38
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
();
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment