Utility tools to backup and restore InfluxDB databases.
influxdb-dump dumps all series from an InfluxDB to a file.
influxdb-restore writes all series from a file to an InfluxDB.
You need a Go development environment. To install to $GOPATH/bin do:
$ go get github.com/eckardt/influxdb-backup/...To copy all datapoints (all series) from one database to another do:
$ influxdb-dump -database oldDB | influxdb-restore -database newDBSee influxdb-dump -help for more usage information.
License MIT