forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Difference, Mode and MovingAverage functions (influxdata#834)
* update vendor.sh * git subrepo clone --force https://github.com/influxdata/influxdb.git vendor/github.com/influxdata/influxdb subrepo: subdir: "vendor/github.com/influxdata/influxdb" merged: "a30f9b6" upstream: origin: "https://github.com/influxdata/influxdb.git" branch: "master" commit: "a30f9b6" git-subrepo: version: "0.3.0" origin: "???" commit: "???" * git subrepo clone --force https://github.com/gogo/protobuf.git vendor/github.com/gogo/protobuf subrepo: subdir: "vendor/github.com/gogo/protobuf" merged: "eef57b9" upstream: origin: "https://github.com/gogo/protobuf.git" branch: "master" commit: "eef57b9" git-subrepo: version: "0.3.0" origin: "???" commit: "???" * add difference func, update code for new influxdb package * add moving average * vendor 1.0 of influxdb * git subrepo clone --force --branch=1.0 https://github.com/influxdata/influxdb.git vendor/github.com/influxdata/influxdb subrepo: subdir: "vendor/github.com/influxdata/influxdb" merged: "5130cd7" upstream: origin: "https://github.com/influxdata/influxdb.git" branch: "1.0" commit: "5130cd7" git-subrepo: version: "0.3.0" origin: "???" commit: "???" * add mode function * add test for batches * CHANGELOG.md
- Loading branch information
Nathaniel Cook
authored
Aug 25, 2016
1 parent
4604e64
commit b8be8ac
Showing
609 changed files
with
50,189 additions
and
38,650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name":"packets", | ||
"points":[ | ||
{ | ||
"fields":{"value":1000}, | ||
"time":"2015-10-18T00:00:00Z" | ||
}, | ||
{ | ||
"fields":{"value":1005}, | ||
"time":"2015-10-18T00:00:02Z" | ||
}, | ||
{ | ||
"fields":{"value":1008}, | ||
"time":"2015-10-18T00:00:04Z" | ||
}, | ||
{ | ||
"fields":{"value":1009}, | ||
"time":"2015-10-18T00:00:06Z" | ||
}, | ||
{ | ||
"fields":{"value":1004}, | ||
"time":"2015-10-18T00:00:08Z" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
{"name":"packets","points":[{"fields":{"value":1000},"time":"2015-10-18T00:00:00Z"},{"fields":{"value":1001},"time":"2015-10-18T00:00:02Z"},{"fields":{"value":1002},"time":"2015-10-18T00:00:04Z"},{"fields":{"value":1003},"time":"2015-10-18T00:00:06Z"},{"fields":{"value":1004},"time":"2015-10-18T00:00:08Z"}]} | ||
{ | ||
"name":"packets", | ||
"points":[ | ||
{ | ||
"fields":{"value":1000}, | ||
"time":"2015-10-18T00:00:00Z" | ||
}, | ||
{ | ||
"fields":{"value":1001}, | ||
"time":"2015-10-18T00:00:02Z" | ||
}, | ||
{ | ||
"fields":{"value":1002}, | ||
"time":"2015-10-18T00:00:04Z" | ||
}, | ||
{ | ||
"fields":{"value":1003}, | ||
"time":"2015-10-18T00:00:06Z" | ||
}, | ||
{ | ||
"fields":{"value":1004}, | ||
"time":"2015-10-18T00:00:08Z" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name":"packets", | ||
"points":[ | ||
{ | ||
"fields":{"value":1000}, | ||
"time":"2015-10-18T00:00:00Z" | ||
}, | ||
{ | ||
"fields":{"value":1005}, | ||
"time":"2015-10-18T00:00:02Z" | ||
}, | ||
{ | ||
"fields":{"value":1008}, | ||
"time":"2015-10-18T00:00:04Z" | ||
}, | ||
{ | ||
"fields":{"value":1009}, | ||
"time":"2015-10-18T00:00:06Z" | ||
}, | ||
{ | ||
"fields":{"value":1004}, | ||
"time":"2015-10-18T00:00:08Z" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
dbname | ||
rpname | ||
packets value=1000 0000000001 | ||
dbname | ||
rpname | ||
packets value=1001 0000000002 | ||
dbname | ||
rpname | ||
packets value=1006 0000000003 | ||
dbname | ||
rpname | ||
packets value=1009 0000000010 | ||
dbname | ||
rpname | ||
packets value=1010 0000000011 | ||
dbname | ||
rpname | ||
packets value=1011 0000000012 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
dbname | ||
rpname | ||
packets value=1000 0000000001 | ||
dbname | ||
rpname | ||
packets value=1001 0000000002 | ||
dbname | ||
rpname | ||
packets value=1002 0000000003 | ||
dbname | ||
rpname | ||
packets value=1003 0000000004 | ||
dbname | ||
rpname | ||
packets value=1014 0000000005 | ||
dbname | ||
rpname | ||
packets value=1015 0000000006 | ||
dbname | ||
rpname | ||
packets value=1016 0000000007 | ||
dbname | ||
rpname | ||
packets value=1017 0000000008 | ||
dbname | ||
rpname | ||
packets value=1018 0000000009 | ||
dbname | ||
rpname | ||
packets value=1019 0000000010 | ||
dbname | ||
rpname | ||
packets value=1020 0000000011 | ||
dbname | ||
rpname | ||
packets value=1021 0000000012 | ||
dbname | ||
rpname | ||
packets value=1022 0000000013 | ||
dbname | ||
rpname | ||
packets value=1023 0000000014 | ||
dbname | ||
rpname | ||
packets value=1024 0000000015 |
Oops, something went wrong.