Go to file
John Shahid c7c79bc441 Fix #531. Compare s1's to s2's name 2014-05-14 11:24:37 -04:00
scripts fix #141. Include the benchmark binary in the package 2014-01-09 18:01:05 -05:00
src Fix #531. Compare s1's to s2's name 2014-05-14 11:24:37 -04:00
utils/burn-in Script to randomly write batches of points over a time interval. 2014-03-14 10:16:30 -04:00
.gitignore add more files to .gitignore 2014-05-07 12:02:27 -04:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml only report success and failure on change 2014-04-15 18:55:20 -04:00
CHANGELOG.md update the changelog 2014-05-13 18:26:56 -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 license with Errplane 2013-10-24 13:44:55 -04:00
Makefile.in Use the abbreviated commit sha 2014-05-13 17:00:20 -04:00
README.md Update README to point to build instructions in the docs. 2013-12-04 16:55:07 -05:00
cert.pem fix #190. Close #194 2014-01-28 14:58:56 -05:00
cluster_notes.txt Update changelog for #145 2014-01-09 16:13:09 -05:00
config.sample.toml Close #477. Add a UDP json listener 2014-05-01 12:13:49 -04: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
packaging.md add packaging docs 2013-11-13 17:44:48 -05:00
release.sh checkin the source code of goraft 2014-03-25 12:22:37 -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.