Go to file
Paul Dix bc8b3b94e0 Move things around in the config file for clarity and add comments. 2013-12-11 17:19:02 -05:00
scripts fix #40. Replace json with toml for configuration 2013-12-11 14:13:42 -05:00
spec Add main server. Add configuration for server. Add integration spec. Updatae http api to not have /api at the beginning 2013-10-21 14:54:37 -04:00
src Move things around in the config file for clarity and add comments. 2013-12-11 17:19:02 -05:00
.gitignore make the location of the log file configurable 2013-12-11 14:15:14 -05:00
.rvmrc prefer gemfile and rvm over manually setting up the env. 2013-11-04 15:51:57 -05:00
.travis.yml run travis tests with 1.2 2013-12-03 13:40:43 -05:00
CHANGELOG.md fix #61. Remove default limit from queries 2013-12-11 14:25:01 -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 license with Errplane 2013-10-24 13:44:55 -04:00
Makefile.in make the location of the log file configurable 2013-12-11 14:15:14 -05:00
README.md Update README to point to build instructions in the docs. 2013-12-04 16:55:07 -05:00
VERSION bump the version. 2013-10-26 13:39:06 -04:00
build.sh revert to using goraft/raft instead of our fork 2013-12-03 18:58:47 -05:00
compile_protobuf.sh use the package manager instead of compiling stuff to speed up the test. 2013-10-24 16:36:54 -04:00
config.toml.sample Move things around in the config file for clarity and add comments. 2013-12-11 17:19:02 -05:00
configure don't require mercurial or bzr 2013-12-02 17:04:42 -05:00
configure.ac remove bzr and mercurial as dependencies 2013-12-02 15:52:35 -05:00
design_notes.md Fixed typos 2013-11-11 18:00:29 +00:00
exports.sh use Makefile instead of shell scripts 2013-11-26 13:44:42 -05:00
package.sh some minor changes and more docs 2013-12-03 18:58:47 -05:00
packaging.md add packaging docs 2013-11-13 17:44:48 -05:00
release.sh stop release on error 2013-12-02 17:59:30 -05:00
test.sh add some notification in the test script 2013-11-18 11:46:35 -05: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.