Skip to content
Snippets Groups Projects
Commit 360d22e5 authored by George Sedov's avatar George Sedov
Browse files

Merge branch 'develop' into 'develop'

added the creation of the avgDB to main.go

See merge request asapo/asapo!191
parents 3f19cc45 e5d3b854
No related branches found
No related tags found
No related merge requests found
......@@ -78,10 +78,11 @@ func main() {
// InfluxDB 1 fix, create database
data := url.Values{}
data.Set("q", "CREATE DATABASE " + settings.InfluxDbDatabase)
data.Set("q", "CREATE DATABASE "+settings.InfluxDbDatabase)
data.Set("q", "CREATE DATABASE "+settings.InfluxDbDatabase+"_avg") //TODO ???
res, err := http.Post(
settings.InfluxDbUrl + "/query", "application/x-www-form-urlencoded",
settings.InfluxDbUrl+"/query", "application/x-www-form-urlencoded",
strings.NewReader(data.Encode()))
if err != nil {
......
......@@ -33,6 +33,7 @@ const (
dbMeasurementFtsTransfers = "ftsTransfers"
// Used to get a corresponding bucket with averaged data
// DO NOT CHANGE
averageSuffix = "_avg"
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment