Go to file
Cory LaNou 664b73e305 Merge pull request #3767 from influxdb/export-fixes
0.8.9 Export Updates
2015-08-21 09:53:02 -05:00
.hooks add a pre-commit hook 2014-06-23 13:25:59 -04:00
_vendor/raft rewrittin imports. buildable source code 2015-06-16 12:44:44 -05:00
admin Move admin assets into the compiled binary. 2014-10-20 17:43:42 -04:00
api remove all disconnect detection 2015-08-21 09:44:57 -05:00
checkers Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
client Move the influxdb test to an examples directory 2014-10-27 17:57:22 -04:00
cluster reenable more auth... 2015-07-23 15:19:14 -05:00
common Some refactoring 2014-10-20 15:24:39 -04:00
configuration allow timeout to really be zero for exporting 2015-07-23 11:02:59 -05:00
coordinator wip 2015-07-09 16:50:06 -06:00
daemon Fix #947: exit nice if no permission to write log 2014-11-10 08:56:14 -05:00
datastore fix error formatting 2015-07-22 11:06:28 -05:00
docs more notes for running 0.8.9 2015-07-27 15:54:47 -05:00
engine rewrittin imports. buildable source code 2015-06-16 12:44:44 -05:00
integration Fix failing writes in test suite. 2014-12-22 17:38:53 -05:00
metastore cleanup the storage keys and point iteration in the shard's code 2014-09-10 14:08:07 -04:00
parser Check for valgrind and mercurial 2014-11-05 18:49:49 -05:00
protocol rewrittin imports. buildable source code 2015-06-16 12:44:44 -05:00
scripts Bump up the number of open files. 2014-11-25 10:26:53 -05:00
server Make sure all services are stopped properly 2014-11-05 18:14:56 -05:00
shared/admin Fixes #1069. Fix interfaces in admin UI. 2014-11-14 16:57:18 -05:00
statik Fixes #1069. Fix interfaces in admin UI. 2014-11-14 16:57:18 -05:00
tools rewrittin imports. buildable source code 2015-06-16 12:44:44 -05:00
utils/burn-in Script to randomly write batches of points over a time interval. 2014-03-14 10:16:30 -04:00
wal rewrittin imports. buildable source code 2015-06-16 12:44:44 -05:00
.gitignore ignore all log files 2015-06-29 09:29:38 -05:00
.rvmrc Revert "Bump rvm to 2.1.0" 2014-01-30 16:58:46 -05:00
.travis.yml run valgrind on travis 2014-11-05 18:50:17 -05:00
CHANGELOG.md Update CHANGELOG for v0.8.8 2014-12-28 14:15:54 -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 the year in the LICENSE file 2014-05-20 15:34:20 -04:00
Makefile.in fix go get link for protobuf 2015-07-28 15:07:38 -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 Switch default storage engine to LevelDB. 2014-12-22 17:38:00 -05:00
configure Fix stray `echo -n` in configure. 2014-11-26 18:51:41 -05:00
configure.ac Check for valgrind and mercurial 2014-11-05 18:49:49 -05:00
release.sh don't try to create another source package 2014-10-24 18:10:21 -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