Go to file
David Norton e27d3bbb21 Fix the timestamps of the points written by the collectd plugin
Try to use high resolution timestamp but if it's 0, fall back to
unix timestamp.

Collectd timestamps are uint64 and influxdb uses int64.  Change
to use type conversion instead of converting to string and then
parsing the string back to int64.  Also, test if the collectd
timestamp is too large for influxdb.  If it is, wrap around and
log an error message the first time but don't fill the log with
messages for every entry thereafter.

Move packet parsing code into its own function so it can be unit
tested.

Add unit tests to for packets using high resolution and unix
timestamps.

Fix #1051. Close #1054
2014-10-27 17:05:14 -04:00
.hooks add a pre-commit hook 2014-06-23 13:25:59 -04:00
_vendor/raft Don't panic on a non existing snapshot 2014-10-21 11:01:29 -04:00
admin Move admin assets into the compiled binary. 2014-10-20 17:43:42 -04:00
api Fix the timestamps of the points written by the collectd plugin 2014-10-27 17:05:14 -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 Delete shards only after making sure no has a reference to it. 2014-10-24 16:36:45 -04:00
common Use the standard heap implementation 2014-10-21 17:57:13 -04:00
configuration Move admin assets into the compiled binary. 2014-10-20 17:43:42 -04:00
coordinator Rename MergeFun to MergeRegex 2014-10-22 17:58:04 -04:00
daemon move the linker flags to profiler.go 2014-09-17 18:46:47 -04:00
datastore Return nil when we're supposed to stop processing points. 2014-10-27 17:02:58 -04:00
docs Merge pull request #977 from chulkilee/contributing 2014-10-20 13:53:24 -04:00
engine Merge pull request #1049 from influxdb/fix-988 2014-10-23 12:34:53 -04:00
integration Delete shards only after making sure no has a reference to it. 2014-10-24 16:36:45 -04:00
metastore cleanup the storage keys and point iteration in the shard's code 2014-09-10 14:08:07 -04:00
parser add a test to make sure merge cannot be used with multiple regexes 2014-10-22 18:16:26 -04:00
protocol Merge points at the shard level 2014-10-21 17:57:13 -04:00
scripts redirect output to a configurable file 2014-10-24 15:03:33 -04:00
server Move admin assets into the compiled binary. 2014-10-20 17:43:42 -04:00
shared/admin Move admin assets into the compiled binary. 2014-10-20 17:43:42 -04:00
statik Move admin assets into the compiled binary. 2014-10-20 17:43:42 -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
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 travis should just build, run unit tests and the data test suite 2014-10-21 11:01:29 -04:00
CHANGELOG.md Fix the timestamps of the points written by the collectd plugin 2014-10-27 17:05:14 -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 some docs to the Makefile 2014-10-24 18:37:11 -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 Move admin assets into the compiled binary. 2014-10-20 17:43:42 -04: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 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