Go to file
John Shahid 2833930b38 don't delete the admin directory 2014-07-15 10:59:40 -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 Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
benchmark Use influxdb/influxdb/client instead of influxdb/influxdb-go 2014-07-14 19:20:30 -04:00
checkers Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
client Use the same ShardSpace in the server and client 2014-07-14 19:41:13 -04:00
cluster Use the same ShardSpace in the server and client 2014-07-14 19:41:13 -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 #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
daemon Use the same ShardSpace in the server and client 2014-07-14 19:41:13 -04:00
datastore Remove a Printf 2014-07-14 18:47:37 -04:00
engine Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
integration Fix the integration test suite to use the cluster type structures 2014-07-15 10:16:15 -04:00
main Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
metastore Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
parser Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -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 Use influxdb/influxdb/client instead of influxdb/influxdb-go 2014-07-14 19:20:30 -04:00
tools Use influxdb/influxdb/client instead of influxdb/influxdb-go 2014-07-14 19:20:30 -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 CHANGELOG.md 2014-07-15 10:15:58 -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 don't delete the admin directory 2014-07-15 10:59:40 -04:00
README.md Update README.md 2014-06-18 14:58:13 -07: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 change the default storage engine to RocksDB 2014-07-15 10:16:15 -04:00
configure Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
configure.ac Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
design_notes.md Fixed typos 2013-11-11 18:00:29 +00:00
packaging.md add packaging docs 2013-11-13 17:44:48 -05:00
release.sh Don't link the rc versions to latest when uploading the packages 2014-07-11 17:26:11 -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.