Go to file
Cory LaNou 7d5322b646 Merge pull request #1523 from influxdb/unauthorized-requests
Log Unauthorized requests
2015-02-06 13:27:17 -07:00
.hooks
client single server integration test is working 2015-02-05 08:50:07 -07:00
cmd refactor how we default authentication enabled 2015-02-05 15:54:32 -07:00
collectd gofmt -s (simplify) 2015-02-01 15:33:12 -05:00
docs Clarify build instructions 2015-01-30 13:05:50 -08:00
etc Provide example join URL 2015-02-05 14:38:00 -08:00
graphite gofmt -s (simplify) 2015-02-01 15:33:12 -05:00
httpd removing debug output 2015-02-05 16:30:09 -07:00
influxql Test parsing of milliseconds 2015-02-05 14:51:36 -08:00
messaging Refactor raft package. 2015-02-04 18:59:06 -07:00
raft Clarify raft trace logging. 2015-02-05 07:35:08 -07:00
scripts
shared/admin
statik
tests clarifying echo message 2015-02-04 16:22:12 -07:00
.gitignore
.travis.yml Try build commands on distinct lines 2015-01-29 22:34:28 -08:00
CHANGELOG.md
LICENSE
QUERIES.md
README.md
database.go fix #1516: ALTER RETENTION POLICY 2015-02-05 12:54:06 -05:00
influxdb.go first pass at hardening authorize 2015-02-05 14:39:40 -07:00
internal_test.go
metastore.go Don't create Measurement bucket twice 2015-01-30 21:52:55 -08:00
package.sh Create, and use, standard path for log file 2015-01-29 14:29:21 -08:00
server.go remove debug output 2015-02-06 10:05:19 -07:00
server_test.go add tests for logging unauthorized access request 2015-02-06 10:03:34 -07:00
shard.go
tx.go
tx_test.go Skip TestTx_CreateIterators until fixed 2015-01-29 22:44:07 -08:00
udp.go golint cleanup 2015-02-01 13:47:48 -05:00
util.go golint cleanup 2015-02-01 13:47:48 -05:00

README.md

InfluxDB Build Status

NOTE: The master branch of InfluxDB is undergoing a significant refactor for v0.9.0. If you need to build a working copy of InfluxDB, please use the 0.8.8 tag.

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