Go to file
Ben Johnson f3ab736d83 Add user creation failure testing. 2014-10-25 09:17:08 -06:00
.hooks add a pre-commit hook 2014-06-23 13:25:59 -04:00
client Refactor tools into cmd. 2014-10-21 17:46:16 -06:00
cluster Refactoring into root. 2014-10-21 23:32:19 -06:00
cmd Refactoring into root. 2014-10-21 23:32:19 -06:00
common More refactoring. 2014-10-22 22:21:48 -06:00
coordinator Refactor messaging error handling. 2014-10-24 17:45:02 -06:00
datastore Add broker client publishing. 2014-10-23 18:54:12 -06:00
docs need wget to build on Debian 2014-10-13 10:25:38 -04:00
engine Parse big int in query's where clause properly 2014-09-23 11:46:14 -04:00
etc Refactoring into root. 2014-10-21 23:32:19 -06:00
integration Add broker client publishing. 2014-10-23 18:54:12 -06:00
messaging Remove topic name from messaging. 2014-10-23 22:22:52 -06:00
parser fixup! Querying for data outside of existing shards should return an empty response. 2014-10-15 12:27:15 -04:00
protocol Refactoring into root. 2014-10-21 23:32:19 -06:00
raft Add influx log. 2014-10-01 20:49:21 -06:00
.gitignore Refactor configuration into main. 2014-10-20 23:32:47 -06:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml Drop testing for 1.2.1 2014-08-12 15:26:39 -04:00
CHANGELOG.md Querying for data outside of existing shards should return an empty response. 2014-10-14 12:59:47 -04: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 Refactor tools into cmd. 2014-10-21 17:46:16 -06:00
README.md Add a contributing doc 2014-07-15 12:53:35 -04:00
configure Add an argument to force using the standard rocksdb lib 2014-10-15 13:41:01 -04:00
configure.ac Add an argument to force using the standard rocksdb lib 2014-10-15 13:41:01 -04:00
datastore.go Add broker client publishing. 2014-10-23 18:54:12 -06:00
errors.go Add CreateUser flow. 2014-10-24 22:38:01 -06:00
graphite.go More refactoring. 2014-10-22 22:21:48 -06:00
http.go Refactoring into root. 2014-10-21 23:32:19 -06:00
http_test.go Refactoring into root. 2014-10-21 23:32:19 -06:00
influxdb.go More refactoring. 2014-10-22 22:21:48 -06:00
release.sh revert previous commit 2014-07-28 18:12:34 -04:00
server.go Add user creation failure testing. 2014-10-25 09:17:08 -06:00
server_test.go Add user creation failure testing. 2014-10-25 09:17:08 -06:00
udp.go More refactoring. 2014-10-22 22:21:48 -06:00
user.go Add CreateUser flow. 2014-10-24 22:38:01 -06:00
user_test.go More refactoring. 2014-10-22 22:21:48 -06:00
util.go More refactoring. 2014-10-22 22:21:48 -06: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