Go to file
Ben Johnson 2c7f879f4d Integrating http handler. 2014-11-10 22:25:03 -07:00
.hooks add a pre-commit hook 2014-06-23 13:25:59 -04:00
client Merge branch 'master' of https://github.com/influxdb/influxdb into streaming-raft 2014-11-06 01:20:36 -05:00
cmd Integrating http handler. 2014-11-10 22:25:03 -07:00
docs Update docs for OS X. 2014-11-02 21:15:09 -05:00
engine Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
etc Merge branch 'master' of https://github.com/influxdb/influxdb into streaming-raft 2014-11-06 01:20:36 -05:00
messaging Integrating http handler. 2014-11-10 22:25:03 -07:00
parser Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
protocol Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
raft Add influx log. 2014-10-01 20:49:21 -06:00
shared/admin Fix continuous query functionality in the api 2014-10-27 17:25:17 -04:00
statik Fix continuous query functionality in the api 2014-10-27 17:25:17 -04:00
.gitignore Integrating http handler. 2014-11-10 22:25:03 -07:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml run valgrind on travis 2014-11-05 18:50:17 -05:00
CHANGELOG.md Check for valgrind and mercurial 2014-11-05 18:49:49 -05:00
Gemfile prefer gemfile and rvm over manually setting up the env. 2013-11-04 15:51:57 -05:00
Gemfile.lock prefer gemfile and rvm over manually setting up the env. 2013-11-04 15:51:57 -05:00
LICENSE update the year in the LICENSE file 2014-05-20 15:34:20 -04:00
Makefile.in Merge branch 'master' of https://github.com/influxdb/influxdb into streaming-raft 2014-11-06 01:20:36 -05:00
README.md Add a contributing doc 2014-07-15 12:53:35 -04:00
configure Check for valgrind and mercurial 2014-11-05 18:49:49 -05:00
configure.ac Check for valgrind and mercurial 2014-11-05 18:49:49 -05:00
database.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
database_test.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
datastore.go Intermediate commit. 2014-11-03 23:25:33 -05:00
errors.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
graphite.go Intermediate commit. 2014-11-03 23:25:33 -05:00
handler.go Integrating http handler. 2014-11-10 22:25:03 -07:00
http_test.go Merge branch 'master' of https://github.com/influxdb/influxdb into streaming-raft 2014-11-06 01:20:36 -05:00
influxdb.go Integrating query into shards. 2014-11-06 01:03:35 -05:00
processor.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
protobuf.go Refactoring common, cluster, and protobuf. 2014-10-31 19:31:19 -06:00
release.sh don't try to create another source package 2014-10-24 18:10:21 -04:00
server.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
server_test.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
shard.go Query engine and parser integration into root pkg. 2014-11-09 19:55:53 -07:00
udp.go Integrating http handler. 2014-11-10 22:25:03 -07:00
user.go Intermediate commit. 2014-11-03 23:25:33 -05:00
user_test.go More refactoring. 2014-10-22 22:21:48 -06:00
util.go Integrating http handler. 2014-11-10 22:25:03 -07:00

README.md

InfluxDB Build Status

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