Go to file
Mark Rushakoff 8a6749fc1c ci: share yarn cache on Circle
On a cache miss, `yarn install` via `make node_modules` takes about 42
seconds, plus about 19 seconds to upload the cache. See
https://circleci.com/gh/influxdata/platform/1872.

On a cache hit, `make node_modules` takes about 7 seconds to download
the cache plus 19 seconds to `yarn install`. See
https://circleci.com/gh/influxdata/platform/1877. Using the cache here
is a net gain of about 16 seconds on cache hit, which is the most likely
case given a random commit.
2018-08-28 14:43:04 -07:00
.circleci ci: share yarn cache on Circle 2018-08-28 14:43:04 -07:00
.github Update PR template to include checkbox for Swagger docs 2018-04-18 12:15:21 -07:00
bolt feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
chronograf feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
cmd feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
context fix(http): fix auth header 2018-06-04 15:26:50 -07:00
docker/flux feat(docker): create a fluxd nightly docker image 2018-07-17 15:06:31 -05:00
flux Flux/connections page () 2018-07-27 10:05:02 -07:00
http feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
kit feat(platform): move chronogaf v2 dashboards to platform 2018-08-24 13:22:58 -04:00
mock feat(platform): move chronogaf v2 dashboards to platform 2018-08-24 13:22:58 -04:00
prometheus revert 2018-08-01 14:54:32 -04:00
query feat(query/plan): make it possible to configure the default memory limit for queries 2018-08-28 16:24:49 -05:00
rand fix(rand): rename *_genator.go to *.go 2018-05-16 11:45:13 -04:00
snowflake revert 2018-08-01 14:54:32 -04:00
source feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
task fix(task): fix data race in scheduler 2018-08-28 08:11:16 -07:00
testing feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
zap fix: Use canonical header since gRPC does not preserve it 2018-08-20 17:01:30 -06:00
.gitignore chore(ci): parallelize js and go tests () 2018-08-27 08:34:17 -07:00
.goreleaser.yml feat(docker): create a fluxd nightly docker image 2018-07-17 15:06:31 -05:00
Gopkg.lock chore(ci): parallelize js and go tests () 2018-08-27 08:34:17 -07:00
Gopkg.toml chore(ci): parallelize js and go tests () 2018-08-27 08:34:17 -07:00
LICENSE Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
Makefile ci: enable GOCACHE for Circle 2018-08-28 13:59:25 -07:00
README.md Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
auth.go feat(task): create validation layer for TaskService () 2018-08-20 15:15:04 -06:00
bucket.go add retention policy name to bucket 2018-08-08 09:37:37 -07:00
dashboard.go feat(platform): move chronogaf v2 dashboards to platform 2018-08-24 13:22:58 -04:00
dbrp_mapping.go chore: Add string method to dbrp mapper filter 2018-08-08 15:31:37 -06:00
dbrp_mapping_test.go revert 2018-08-01 14:54:32 -04:00
error.go feat(platform): move chronogaf v2 dashboards to platform 2018-08-24 13:22:58 -04:00
id.go revert 2018-08-01 14:54:32 -04:00
id_test.go revert 2018-08-01 14:54:32 -04:00
organization.go revert 2018-08-01 14:54:32 -04:00
query.go feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
source.go feat(platform): add uniform query endpoint for sources 2018-08-28 15:53:20 -04:00
task.go refactor(task): add org id to log reader calls () 2018-08-23 12:30:59 -06:00
token.go fix(platform): rename *_generator.go to *.go 2018-05-16 11:45:13 -04:00
usage.go migrate(platform): move public dependencies into platform 2018-05-14 17:12:53 -04:00
user.go revert 2018-08-01 14:54:32 -04:00
user_resource_mapping.go owner mapping -> user resource mapping 2018-08-02 11:07:03 -07:00
user_resource_mapping_test.go owner mapping -> user resource mapping 2018-08-02 11:07:03 -07:00
view.go feat(platform): move chronogaf v2 dashboards to platform 2018-08-24 13:22:58 -04:00
view_test.go feat(platform): move chronogaf v2 dashboards to platform 2018-08-24 13:22:58 -04:00

README.md

InfluxData Platform

This is the monorepo for InfluxData Platform, a.k.a. Influx 2.0 OSS.

Vendoring

This project is using dep for vendoring.

Use dep ensure -vendor-only when you only need to populate the vendor directory to run go build successfully, or run dep ensure to both populate the vendor directory and update Gopkg.lock with any newer constraints.

Introducing Flux

We recently announced Flux, the MIT-licensed data scripting language (and rename for IFQL). The source for Flux is in this repository under query. Learn more about Flux from CTO Paul Dix's presentation.