Go to file
John Shahid 3ebf536737 wait for servers to sync 2014-07-29 14:29:19 -04:00
.hooks add a pre-commit hook 2014-06-23 13:25:59 -04:00
_vendor/raft Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
admin Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
api graphite ingest write data in batches to coordinator 2014-07-28 14:40:21 -04:00
checkers Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
client Add New() to the client library so users can do client.New() 2014-07-17 14:50:01 -04:00
cluster Fix some bugs with retention policy of shard spaces 2014-07-22 10:55:39 -04:00
common Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
configuration Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
coordinator Fix a unit test that has changed in 91078c0 2014-07-22 15:54:16 -04:00
daemon add a flag to force output to go to stdout 2014-07-22 12:49:31 -04:00
datastore Add the sentinel values for all db on creation 2014-07-21 13:36:08 -04:00
docs more stuff in the contributing doc 2014-07-17 12:49:45 -04:00
engine Allow 'null' to be supplied as fill value 2014-07-22 15:07:11 -04:00
integration wait for servers to sync 2014-07-29 14:29:19 -04:00
metastore Add String() to the Field structure 2014-07-21 13:26:11 -04:00
parser Fix the build on go1.3 2014-07-29 12:55:52 -04:00
protocol remove an unused file 2014-07-15 10:34:41 -04:00
scripts Fix #670. Redirect output to /dev/null 2014-06-21 16:18:15 -04:00
server graphite ingest write data in batches to coordinator 2014-07-28 14:40:21 -04:00
tools fixup! use the client library without alias 2014-07-17 14:52:07 -04:00
utils/burn-in Script to randomly write batches of points over a time interval. 2014-03-14 10:16:30 -04:00
wal Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
.gitignore Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml use go 1.2.1 and 1.3 on travis 2014-06-30 11:31:08 -04:00
CHANGELOG.md update the changelog 2014-07-28 14:44:36 -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 Fix travis 2014-07-22 12:31:35 -04:00
README.md Add a contributing doc 2014-07-15 12:53:35 -04:00
cert.pem fix #190. Close #194 2014-01-28 14:58:56 -05:00
config.sample.toml lower the write buffer size 2014-07-15 15:32:20 -04:00
configure Use goroot to find go and gofmt 2014-07-18 11:33:35 -04:00
configure.ac Use goroot to find go and gofmt 2014-07-18 11:33:35 -04:00
release.sh revert previous commit 2014-07-28 18:12:34 -04: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