forked from veepee-oss/influxdb-relay
-
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.
Bugfixing, new configuration, health, hot flushing, rate limiting, fi…
…ltering
- Loading branch information
Lucas SANTONI
authored and
Marc BENSLAHDINE
committed
Dec 27, 2018
1 parent
ccc3c49
commit ccac026
Showing
32 changed files
with
1,180 additions
and
336 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,13 @@ Nov 15 2018 Maxime CORBIN <[email protected]> | |
* Add `-version` option | ||
|
||
Dec 13 2018 Maxime CORBIN <[email protected]> | ||
* Added `/admin` endpoint that can be used to create or remove databases | ||
* Added `/health` endpoint that can be used to monitor the health status of every backend | ||
* Fixed some performance bugs & added a few more logs | ||
* Add `/admin` endpoint that can be used to create or remove databases | ||
* Add `/health` endpoint that can be used to monitor the health status of every backend | ||
* Fixed some performance bugs & added a few more logs | ||
|
||
Dec 27 2018 Clément CORNUT <[email protected]> | ||
* Add `/admin/flush` endpoint that can be used to flush internal buffer | ||
* Add Rate limiting on backend | ||
* Add Filters for tags and measurements | ||
* New configuration formatting | ||
* Various bug fixes |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,3 +9,7 @@ | |
[prune] | ||
go-tests = true | ||
unused-packages = true | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "golang.org/x/time" |
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,32 @@ | ||
# Building system packages | ||
|
||
To build system packages for Linux (`deb`, `rpm`, etc), use the included | ||
`scripts/build.py` script. | ||
|
||
```sh | ||
$ # Get all the code and dependencies into a temporary $GOPATH | ||
$ export GOPATH=/tmp/go | ||
$ go get -d -u github.com/vente-privee/influxdb-relay | ||
$ cd $GOPATH/src/github.com/vente-privee/influxdb-relay | ||
$ scripts/build.py | ||
``` | ||
|
||
The packages will be found under | ||
`$GOPATH/src/github.com/vente-privee/influxdb-relay/build` | ||
|
||
For more build options, check the build script arguments: | ||
```sh | ||
$ scripts/build.py -h | ||
``` | ||
|
||
For example, to build versioned packages use: | ||
```sh | ||
$ scripts/build.py --package --version 2.3.0 | ||
``` | ||
|
||
## Dependencies | ||
|
||
1. Go 1.5+ is required. Use https://go-repo.io/ to install on CentOS/Fedora. | ||
2. FPM Ruby gem is needed - use | ||
https://fpm.readthedocs.io/en/latest/installing.html as an installation guide | ||
for Fedora/CentOS and Debian/Ubuntu. |
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
Oops, something went wrong.