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
32d06836
Commit
32d06836
authored
Jul 03, 2016
by
Björn Rabenstein
Committed by
GitHub
Jul 03, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #470 from prometheus/beorn7/doc-improve
functions: Clarify over-time semantics
parents
5c673307
b011b6a3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
functions.md
content/docs/querying/functions.md
+8
-5
No files found.
content/docs/querying/functions.md
View file @
32d06836
...
...
@@ -331,8 +331,11 @@ sample value.
The following functions allow aggregating each series of a given range vector
over time and return an instant vector with per-series aggregation results:
*
`avg_over_time(range-vector)`
: the average value of all points under the specified interval.
*
`min_over_time(range-vector)`
: the minimum value of all points under the specified interval.
*
`max_over_time(range-vector)`
: the maximum value of all points under the specified interval.
*
`sum_over_time(range-vector)`
: the sum of all values under the specified interval.
*
`count_over_time(range-vector)`
: the count of all values under the specified interval.
*
`avg_over_time(range-vector)`
: the average value of all points in the specified interval.
*
`min_over_time(range-vector)`
: the minimum value of all points in the specified interval.
*
`max_over_time(range-vector)`
: the maximum value of all points in the specified interval.
*
`sum_over_time(range-vector)`
: the sum of all values in the specified interval.
*
`count_over_time(range-vector)`
: the count of all values in the specified interval.
Note that all values in the specified interval have the same weight in the
aggregation even if the values are not equally spaced throughout the interval.
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