Go to file
Philip O'Toole 1edbd816fc Start with a processor. 2015-01-06 15:38:35 -08:00
.hooks
client
cmd Refactor into distinct TCP and UDP servers 2015-01-06 15:17:29 -08:00
docs
etc Start with a processor. 2015-01-06 15:38:35 -08:00
graphite Start with a processor. 2015-01-06 15:38:35 -08:00
influxql Add unit test for change made by PR 1273 2014-12-31 15:50:10 -08:00
messaging Create cluster on initial run. 2014-12-31 12:42:53 -07:00
raft Fix tests for /raft prefix. 2014-12-30 11:57:57 -07:00
shared/admin
statik
.gitignore
.travis.yml
CHANGELOG.md
LICENSE update the year in the LICENSE file 2015-01-05 21:35:28 -08:00
QUERIES.md Update QUERIES.md 2014-12-30 14:40:44 -05:00
README.md
database.go Remove series id to measurement map, put in series object 2015-01-02 14:24:48 -05:00
database_test.go Update database style based on feedback 2015-01-02 14:02:02 -05:00
handler.go Return 201, not 200, after creation of user 2015-01-05 15:58:30 -08:00
handler_test.go Merge remote-tracking branch 'upstream/master' into graphite 2015-01-05 20:16:38 -07:00
influxdb.go Rename Node to DataNode. 2014-12-30 08:50:15 -07:00
metastore.go Update database style based on feedback 2015-01-02 14:02:02 -05:00
server.go Merge remote-tracking branch 'upstream/master' into graphite 2015-01-05 20:16:38 -07:00
server_test.go Correct some comments 2015-01-04 22:11:37 -08:00
shard.go Reanme Shard.nodeIDs to Shard.dataNodeIDs. 2014-12-30 10:20:45 -07:00
udp.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.8 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