Go to file
David Norton 3c57dd3165 Wire up GET /db/:db/users 2014-12-22 10:20:48 -05:00
.hooks
client
cmd Add protocol to Raft connection string 2014-12-19 16:18:48 -05:00
docs
etc Support separate HTTP ports for Raft and API 2014-12-16 19:39:43 -08:00
influxql Add Rewriter. 2014-12-21 15:18:55 -07:00
messaging Check for connection URL on Broker Open() 2014-12-19 17:09:39 -05:00
raft Prefix remaining Raft paths with 'raft' 2014-12-19 16:31:40 -05:00
shared/admin
statik
.gitignore
.travis.yml Revert "Merge pull request #1174 from otoolep/increase_add_time" 2014-11-26 07:56:19 -08:00
CHANGELOG.md Add Loopback client support to change log 2014-11-25 13:45:36 -08:00
LICENSE
QUERIES.md Update QUERIES.md 2014-12-09 11:26:34 -05:00
README.md Actually update display text for 0.8.7 release 2014-12-16 20:07:00 -08:00
database.go Refactor planner. 2014-12-09 08:45:29 -07:00
database_test.go Rebuilding engine in influxql. 2014-12-07 22:08:39 -07:00
graphite.go
handler.go Wire up GET /db/:db/users 2014-12-22 10:20:48 -05:00
handler_test.go Wire up GET /db/:db/users 2014-12-22 10:20:48 -05:00
influxdb.go gofmt 2014-12-03 11:32:53 -05:00
server.go gofmt 2014-12-03 11:32:53 -05:00
server_test.go WIP: Implement writes series data on database 2014-11-26 11:26:18 -05:00
shard.go Make writeSeries create shards if necessary and write data through. 2014-11-30 18:00:50 -05:00
udp.go
user.go Wire up POST /db/:db/users/:user 2014-12-22 10:20:48 -05:00
user_test.go
util.go

README.md

InfluxDB Build Status

NOTE: The master branch of InfluxDB is undergoing a significant refactor for v0.9.0. If you need to build a working copy of InfluxDB, please use the 0.8.7 tag.

InfluxDB is an open source distributed time series database with no external dependencies. It's useful for recording metrics, events, and performing analytics.

It has a built-in HTTP API so you don't have to write any server side code to get up and running.

InfluxDB is designed to be scalable, simple to install and manage, and fast to get data in and out.

It aims to answer queries in real-time. That means every data point is indexed as it comes in and is immediately available in queries that should return in < 100ms.

Quickstart

Building

You don't need to build the project to use it. Pre-built binaries and instructions to install InfluxDB are here. That's the recommended way to get it running. However, if you want to contribute to the core of InfluxDB, you'll need to build. For those adventurous enough, you can follow along on our docs