Go to file
Paul Dix b1e6184ea1 validate that shard spaces have a non-empty regex 2014-08-22 15:01:03 -04:00
.hooks add a pre-commit hook 2014-06-23 13:25:59 -04:00
_vendor/raft Fix the build 2014-08-12 14:50:55 -04:00
admin Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
api Merge pull request #863 from influxdb/862-slow-data-migrator 2014-08-21 17:27:53 -04:00
checkers Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
client Make create shard space endpoint database specific. 2014-08-15 13:23:21 -04:00
cluster validate that shard spaces have a non-empty regex 2014-08-22 15:01:03 -04:00
common Series should be returned in sorted order 2014-08-15 14:06:33 -04:00
configuration Fix #690. Use idiomatic go project structure 2014-07-14 18:47:37 -04:00
coordinator makes listServers api more informative 2014-08-19 17:09:23 +08:00
daemon Move load database config to API 2014-08-01 16:09:00 -04:00
datastore Don't ever try to query or write against a shard that is closed or deleted. 2014-08-22 13:41:34 -04:00
docs Drop testing for 1.2.1 2014-08-12 15:26:39 -04:00
engine Always fill empty groups if the start time is specified. 2014-08-06 16:03:29 -04:00
integration Update database configuration to validate shard spaces before creating anything. 2014-08-21 16:59:27 -04:00
metastore Series should be returned in sorted order 2014-08-15 14:06:33 -04:00
migration Add optional pausing to data migration. 2014-08-21 17:15:55 -04:00
parser Remove an unused rule in the lexer 2014-08-13 15:23:27 -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 Add data migration 0.7 -> 0.8 2014-08-15 13:20:49 -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 ensure close file before rename bookmark file. 2014-08-19 09:57:39 +08:00
.gitignore makes listServers api more informative 2014-08-19 17:09:23 +08:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml Drop testing for 1.2.1 2014-08-12 15:26:39 -04:00
CHANGELOG.md Update CHANGELOG.md 2014-08-22 13:45:53 -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 Add flymake targets 2014-08-15 13:47:01 -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