Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
docs
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
docs
Commits
0f480966
Commit
0f480966
authored
Jul 07, 2016
by
Brian Brazil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document topk/bottomk becoming aggregators.
parent
360e9936
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
18 deletions
+17
-18
functions.md
content/docs/querying/functions.md
+0
-11
operators.md
content/docs/querying/operators.md
+17
-7
No files found.
content/docs/querying/functions.md
View file @
0f480966
...
...
@@ -34,12 +34,6 @@ absent(sum(nonexistent{job="myjob"}))
This is useful for alerting on when no time series
exist for a given metric name and label combination.
## `bottomk()`
`bottomk(k integer, v instant-vector)`
returns the
`k`
smallest elements of
`v`
by sample value.
## `ceil()`
`ceil(v instant-vector)`
rounds the sample values of all elements in
`v`
up to
...
...
@@ -317,11 +311,6 @@ Same as `sort`, but sorts in descending order.
this does not actually return the current time, but the time at which the
expression is to be evaluated.
## `topk()`
`topk(k integer, v instant-vector)`
returns the
`k`
largest elements of
`v`
by
sample value.
## `vector()`
`vector(s scalar)`
returns the scalar
`s`
as a vector with no labels.
...
...
content/docs/querying/operators.md
View file @
0f480966
...
...
@@ -185,18 +185,24 @@ vector of fewer elements with aggregated values:
*
`stddev`
(calculate population standard deviation over dimensions)
*
`stdvar`
(calculate population standard variance over dimensions)
*
`count`
(count number of elements in the vector)
*
`bottomk`
(smallest k elements by sample value)
*
`topk`
(largest k elements by sample value)
These operators can either be used to aggregate over
**all**
label dimensions
or preserve distinct dimensions by including a
`without`
or
`by`
clause.
<aggr-op>(<vector expression>) [without|by (<label list>)] [keep_common]
<aggr-op>(
[parameter,]
<vector expression>) [without|by (<label list>)] [keep_common]
`without`
removes the listed labels from the result vector, while all other
labels are preserved the output.
`by`
does the opposite and drops labels that
are not listed in the
`by`
clause, even if their label values are identical
between all elements of the vector. The
`keep_common`
clause allows keeping
those extra labels (labels that are identical between elements, but not in the
`by`
clause).
`parameter`
is only required for
`topk`
and
`bottomk`
.
`without`
removes the
listed labels from the result vector, while all other labels are preserved the
output.
`by`
does the opposite and drops labels that are not listed in the
`by`
clause, even if their label values are identical between all elements of the
vector. The
`keep_common`
clause allows keeping those extra labels (labels that
are identical between elements, but not in the
`by`
clause).
`topk`
and
`bottomk`
are different from other aggregators in that a subset of
the input samples, including the original labels, are returned in the result
vector.
`by`
and
`without`
are only used to bucket the input vector.
Until Prometheus 0.14.0, the
`keep_common`
keyword was called
`keeping_extra`
.
The latter is still supported, but is deprecated and will be removed at some
...
...
@@ -215,6 +221,10 @@ applications, we could simply write:
sum(http_requests_total)
To get the 5 largest HTTP requests counts across all instances we could write:
topk(5, http_requests_total)
## Binary operator precedence
The following list shows the precedence of binary operators in Prometheus, from
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment