Go to file
Todd Persen 5d68db9f7f API endpoint for continuous queries should return simplified results. 2014-02-19 14:35:53 -05:00
scripts fix #141. Include the benchmark binary in the package 2014-01-09 18:01:05 -05:00
spec
src API endpoint for continuous queries should return simplified results. 2014-02-19 14:35:53 -05:00
.gitignore add gogoprotobuf to .gitignore 2014-02-05 15:12:44 -05:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml disable travis irc notifications 2014-01-24 12:48:40 -05:00
CHANGELOG.md fix #189. Use name instead of username when listing users 2014-02-17 14:20:13 -05:00
Gemfile
Gemfile.lock
LICENSE
Makefile.in build protobuf before running the tests 2014-02-10 14:04:14 -05:00
README.md
benchmark.log Update changelog for #145 2014-01-09 16:13:09 -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.toml.sample make the max leveldb open files configurable 2014-02-05 15:12:44 -05:00
configure
configure.ac
design_notes.md
exports.sh
packaging.md
release.sh

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.