Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
e6bccc5e
Commit
e6bccc5e
authored
May 02, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(influxdb): Added new functions moving_average and difference to query editor, closes #4698
parent
1b262d33
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletions
+22
-1
CHANGELOG.md
+3
-0
docker/blocks/influxdb/fig
+1
-1
public/app/plugins/datasource/influxdb/query_part.ts
+18
-0
No files found.
CHANGELOG.md
View file @
e6bccc5e
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
*
**
Graphite PNG
*
: Fixed issue graphite png rendering option, fixes
[
#4864
](
https://github.com/grafana/grafana/issues/4864
)
*
**
Graphite PNG
*
: Fixed issue graphite png rendering option, fixes
[
#4864
](
https://github.com/grafana/grafana/issues/4864
)
*
**InfluxDB**
: Fixed issue missing plus group by iconn, fixes
[
#4862
](
https://github.com/grafana/grafana/issues/4862
)
*
**InfluxDB**
: Fixed issue missing plus group by iconn, fixes
[
#4862
](
https://github.com/grafana/grafana/issues/4862
)
### Enhancements
*
**InfluxDB**
: Added new functions moving_average and difference to query editor, closes
[
#4698
](
https://github.com/grafana/grafana/issues/4698
)
# 3.0.0-beta6 (2016-04-29)
# 3.0.0-beta6 (2016-04-29)
### Enhancements
### Enhancements
...
...
docker/blocks/influxdb/fig
View file @
e6bccc5e
influxdb:
influxdb:
image: tutum/influxdb:
latest
image: tutum/influxdb:
0.12
ports:
ports:
- "2004:2004"
- "2004:2004"
- "8083:8083"
- "8083:8083"
...
...
public/app/plugins/datasource/influxdb/query_part.ts
View file @
e6bccc5e
...
@@ -240,6 +240,24 @@ QueryPartDef.register({
...
@@ -240,6 +240,24 @@ QueryPartDef.register({
});
});
QueryPartDef
.
register
({
QueryPartDef
.
register
({
type
:
'difference'
,
addStrategy
:
addTransformationStrategy
,
category
:
categories
.
Transformations
,
params
:
[],
defaultParams
:
[],
renderer
:
functionRenderer
,
});
QueryPartDef
.
register
({
type
:
'moving_average'
,
addStrategy
:
addTransformationStrategy
,
category
:
categories
.
Transformations
,
params
:
[{
name
:
"window"
,
type
:
"number"
,
options
:
[
5
,
10
,
20
,
30
,
40
]}],
defaultParams
:
[
10
],
renderer
:
functionRenderer
,
});
QueryPartDef
.
register
({
type
:
'stddev'
,
type
:
'stddev'
,
addStrategy
:
addTransformationStrategy
,
addStrategy
:
addTransformationStrategy
,
category
:
categories
.
Transformations
,
category
:
categories
.
Transformations
,
...
...
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