Go to file
Ben Johnson f6ef96c142 Refactor broker to messaging pkg. 2014-10-20 20:42:03 -06: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 fixup! Return the right content in the response when it's compressed 2014-10-07 13:48:26 -04:00
checkers Restructure the codebase to be more idiomatic 2014-06-30 11:31:08 -04:00
client Fix the millisecond time precision in the client 2014-09-11 18:16:22 -04:00
cluster Refactor broker to messaging pkg. 2014-10-20 20:42:03 -06:00
common move type to its own file 2014-09-23 11:34:42 -04:00
configuration Refactor broker to messaging pkg. 2014-10-20 20:42:03 -06:00
coordinator Merge branch 'master' of https://github.com/influxdb/influxdb into streaming-raft 2014-10-16 13:33:02 -06:00
daemon move the linker flags to profiler.go 2014-09-17 18:46:47 -04:00
datastore Use rocksdb 3.5.1 2014-10-10 16:11:17 -04:00
docs need wget to build on Debian 2014-10-13 10:25:38 -04:00
engine Parse big int in query's where clause properly 2014-09-23 11:46:14 -04:00
integration fixup! Querying for data outside of existing shards should return an empty response. 2014-10-15 12:27:15 -04:00
messaging Refactor broker to messaging pkg. 2014-10-20 20:42:03 -06:00
metastore cleanup the storage keys and point iteration in the shard's code 2014-09-10 14:08:07 -04:00
parser fixup! Querying for data outside of existing shards should return an empty response. 2014-10-15 12:27:15 -04:00
protocol Simplify the response types 2014-09-03 15:10:43 -04:00
raft Add influx log. 2014-10-01 20:49:21 -06:00
scripts Changes init script exit code to conform to lab standards 2014-10-10 12:16:12 -06:00
server Don't automatically create shards 2014-09-22 14:49:59 -04:00
tools make the directory removal optional 2014-09-22 13:15:33 -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 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 Querying for data outside of existing shards should return an empty response. 2014-10-14 12:59:47 -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 an argument to force using the standard rocksdb lib 2014-10-15 13:41: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 Add support for syslog facilities local0-local7 2014-09-03 22:22:51 +02:00
configure Add an argument to force using the standard rocksdb lib 2014-10-15 13:41:01 -04:00
configure.ac Add an argument to force using the standard rocksdb lib 2014-10-15 13:41:01 -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