Jonathan A. Sternberg
f385840f3a
refactor(kv): set the default session length when not specified ( #17547 )
...
At the moment, the default session length only gets set to the default
when no service config is specified. So if a service config is used and
it does not set a value for the session length, then the session length
will be zero.
This modifies the creation of the kv service so that it will set the
default session length if the session length is set to zero (the default
value) instead of only doing it when no service config is specified.
2020-04-01 15:02:22 -05:00
Gavin Cabbage
f3462b306b
fix: revert token change to add user ID ( #17551 )
2020-04-01 15:13:20 -04:00
Alirie Gray
c4517a609e
refactor(tenant): change info level logs to debug ( #17476 )
2020-04-01 12:09:29 -07:00
Bucky Schwarz
83c0f297c7
perf: TableGraphTable: tweak rendering internal state
...
fields that are often re-updated but rarely change value were moved out of react state
and into internal component state. changing these values won't force re-renders.
2020-04-01 11:54:39 -07:00
Alex Boatwright
1461dbb1d3
fix: allow the addition of variables ( #17538 )
2020-04-01 11:15:08 -07:00
Bucky Schwarz
0070350cad
fix: tech-debt workaround - add limit of 100 to checks fetches to show all checks
2020-04-01 11:00:49 -07:00
kelwang
49b69cf800
Merge pull request #17490 from influxdata/cli_easy_switch_back
...
feat(cmd/influx): add config switch back
2020-04-01 13:45:28 -04:00
Gavin Cabbage
5f1eaa7be3
feat: include user ID with web token ( #17535 )
2020-04-01 13:43:46 -04:00
Bucky Schwarz
02946a48a2
fix: view editor overlay should respect table view options
2020-04-01 10:04:25 -07:00
Bucky Schwarz
572e81e3ea
chore: use performance timer to measure query duration, rather than date
2020-04-01 10:04:25 -07:00
George
9d5d63518d
feat(kv): add support for batch getting keys on bucket interface ( #17531 )
2020-04-01 17:51:35 +01:00
Kelvin Wang
abe3a96674
feat(cmd/influx): add config switch back
2020-04-01 12:44:21 -04:00
Jonathan A. Sternberg
eda8d44c74
ci(promqltests): update promqltests go.mod file to be compatible with go 1.13 ( #17510 )
...
The prometheus project doesn't adhere to the module suffix so any
attempt to use it as a library fails with go 1.13 or greater. The
workaround is to `go get` a specific commit revision that corresponds to
a tag and let go figure out a pseudo-version for it.
In this case, I updated the revision to the one pointed at by `v2.9.2`
since that is what the current `go.mod` file pointed at. I also updated
the go version to 1.13 inside of `go.mod` to be the same as influxdb.
See https://github.com/prometheus/prometheus/issues/6048 for details.
2020-04-01 10:00:43 -05:00
Alex Boatwright
eaaf66d59b
fix: adding contextual time to timemachine ( #17528 )
2020-04-01 05:26:22 -07:00
Alex Boatwright
91d632ea5c
fix: filter out empty nodes on the ast ( #17517 )
2020-03-31 17:49:03 -07:00
alexpaxton
0e4289c595
fix(ui): include link to non-multi-user members cloud page ( #17459 )
...
* fix(ui): include link to non-multi-user members cloud page
* refactor(ui): conditionally render anchors or router links depending on whether the destination is cloud or internal
* refactor(ui): ensure old /profile route is supported
* refactor(ui): consolidate multi-user quartz links
2020-03-31 14:50:24 -07:00
alexpaxton
f617657e8d
feat(ui): update design of flux editor toolbar ( #17488 )
...
* feat(ui): redesign flux editor
* chore(ui): delete threesizer
* fix(ui): repair explorer e2e tests
* refactor(ui): make variables easier to test
* fix(ui): appease prettier
* fix(ui): update selectors in dashboards view test
2020-03-31 14:45:47 -07:00
Scott Anderson
1816425e52
chore(flux): added Flux 0.65 functions ( #17506 )
2020-03-31 15:26:24 -06:00
Johnny Steenbergen
098fd27ab4
feat(pkger): extend DiffBucket with name for existing and new bucket values
...
provides mapping between pkgName and resource the diff represents. Now that
stacks are in place, the existing bucket may change names.
2020-03-31 13:34:40 -07:00
Alex Boatwright
6fa144192f
chore: cleaning variables ( #17360 )
...
this refactors variable selectors so that they work everywhere
2020-03-31 13:14:34 -07:00
Deniz Kusefoglu
6aa7c0830e
feat(sampledata): Request buckets with demodata orgID ( #17507 )
2020-03-31 12:52:33 -07:00
George
173ded1a10
fix(kv): make index walk use cursor instead of get ( #17501 )
2020-03-31 17:26:21 +01:00
Jakub Bednář
d7f7cf26b1
docs(clientLibs): fix examples for PHP and JavaScript/Node.js ( #17497 )
...
* docs(clientLibs): fixed examples for PHP
Signed-off-by: Jakub Bednar <jakub.bednar@gmail.com>
* docs(clientLibs): fixed examples for JavaScript/Node.js
Signed-off-by: Jakub Bednar <jakub.bednar@gmail.com>
* docs(clientLibs): fixed examples for Python
Signed-off-by: Jakub Bednar <jakub.bednar@gmail.com>
* docs(clientLibs): fixed examples for Ruby
Signed-off-by: Jakub Bednar <jakub.bednar@gmail.com>
2020-03-31 08:55:44 -07:00
Gianluca Arbezzano
8e5bd1a2dd
chore(tracing): embed the opentracing.Span
...
Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
2020-03-31 16:01:31 +02:00
Gianluca Arbezzano
af06897014
chore(tracing): Span with Prometheus Metrics moved to kit/tracing
...
I think it is a nice utility function that I would like to use
elsewhere.
So I decided to move it out to the tracing package.
Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
2020-03-31 14:17:50 +02:00
kelwang
5915fd39b3
Merge pull request #17398 from influxdata/17003/writeFromCsv
...
feat(cmd/influx): influx cli can write CSV files
2020-03-30 12:04:25 -04:00
Pavel Zavora
153bc0bd40
Merge branch 'master' into 17003/writeFromCsv
2020-03-29 21:20:10 +02:00
Pavel Zavora
9e55ac3481
chore(cmd/influx/write): remove unused DryRun flag
2020-03-29 20:30:06 +02:00
Pavel Zavora
f8a76a5584
fix(cmd/influx/write): assume UTC timezone in dateTime:number type
2020-03-29 19:28:16 +02:00
Yiqun (Ethan) Zhang
48efdb52ea
build(flux): update Flux to v0.65.0 ( #17484 )
2020-03-27 18:42:19 -04:00
Lyon Hill
5e018ee3e4
fix(tenant): add system buckets for old orgs that may not have buckets. ( #17479 )
2020-03-27 15:31:35 -06:00
Johnny Steenbergen
9f2fcea365
fix: add missing flag register to task run list cmd for json out and hide header flags
2020-03-27 14:20:37 -07:00
Russ Savage
a3ff52d13e
chore(changelog): add beta-7 date
2020-03-27 14:16:11 -07:00
Johnny Steenbergen
77900b39cc
fix: add missing flag register to task run list cmd for json out and hide header flags
2020-03-27 13:47:31 -07:00
Ariel Salem
a8becf1a73
fix(ui): fixed export token refresh bug ( #17471 )
2020-03-27 13:43:17 -07:00
Johnny Steenbergen
e767b1e410
fix: add missing flag register to org cmd for json out and hide header flags
2020-03-27 13:31:46 -07:00
Alirie Gray
8c61d913b4
refactor(tenant): move user auth layer into tenant service ( #17473 )
2020-03-27 13:10:43 -07:00
kelwang
51d360355c
Merge pull request #17472 from influxdata/simple_config_switch
...
feat(cmd/influx): easy switch config
2020-03-27 16:08:28 -04:00
Johnny Steenbergen
aa8e080858
chore(pkger): add additional documentation for pkger
2020-03-27 12:54:55 -07:00
Kelvin Wang
5db57c9081
feat(cmd/influx): easy switch config
2020-03-27 15:45:36 -04:00
Johnny Steenbergen
3cb44a0301
feat(influx): add jsonout and hide headers support to task cmd
2020-03-27 12:33:24 -07:00
Johnny Steenbergen
361777acfd
feat(influx): add jsonout and hide headers support to auth cmd
2020-03-27 11:49:09 -07:00
Johnny Steenbergen
62a64e9abd
feat(influx): add jsonout and hide headers support to user cmd
2020-03-27 11:49:09 -07:00
Alirie Gray
ca1e8a7359
refactor(tenant): move org auth layer to tenant service ( #17468 )
2020-03-27 11:47:30 -07:00
Lyon Hill
4e38c4e636
feat(tenant): add urm indexing into the tenant service ( #17467 )
2020-03-27 12:36:25 -06:00
Brett Buddin
2200143a22
Merge pull request #17462 from influxdata/bb/no-tasks
...
feat(influxd): flag to disable scheduling of tasks
2020-03-27 14:26:34 -04:00
Russ Savage
b0876d4144
Merge branch 'master' into 17003/writeFromCsv
2020-03-27 11:14:52 -07:00
Johnny Steenbergen
7a518380ad
feat(influx): add jsonout and hide headers support to config cmd
2020-03-27 10:59:50 -07:00
Johnny Steenbergen
241e3513e6
feat(influx): add jsonout and hide headers support to setup cmd
2020-03-27 10:59:50 -07:00
Johnny Steenbergen
08fbdbff1a
feat(influx): add jsonout and hide headers support to secret cmd
2020-03-27 10:59:50 -07:00