Commit Graph

33813 Commits (471ccfd50fec4a4d8b122160902d3985d907cc5e)

Author SHA1 Message Date
Zoe Steinkamp 471ccfd50f
feat: Community template polishing (#19171)
* feat: Community template polishing
2020-07-31 15:59:46 -06:00
Alex Boatwright a89040bfa7
fix: decoupling remounting from onboarding state (#19124) 2020-07-31 13:42:26 -07:00
Alex Boatwright 337bc7c2ea
fix: apply feedback from default sort order (#19165) 2020-07-31 12:20:33 -07:00
Andrew Watkins a3b000bb4c
perf: dashboard rendering events (#19163)
* fix: useRef DnD context error spam

* perf: only fire events for initiall viewable cells

* fix: drag types

* fix: import

* fix: unused imports

* chore: add TODO

* fix: remove unused ref

* fix: import

* fix: import observer polyfill

* chore: move event

* chore: mountID to renderID

* feat: change renderID from tag to field

* chore: remove redundant orgID
2020-07-31 11:56:40 -07:00
Pavel Závora d77ccf9ed7
Merge pull request #19082 from influxdata/19081/lost_secrets
fix(endpoints): do not reset organization's secrets when an endpoint is created or updated
2020-07-31 12:45:37 +02:00
Johnny Steenbergen 211e16dd7c chore(pkger): axe deprecated fields 2020-07-30 17:25:58 -07:00
Zoe Steinkamp 11d1823841
feat: Template link to resource (#19154)
* feat: Template link to resource

* chore(community-templates): consolidate community template links

Co-authored-by: Bucky Schwarz <d.w.schwarz@gmail.com>
2020-07-30 16:36:01 -06:00
Lyon Hill a0d7f9c41b
feat(tenant): Allow tenant to be composable and still maintain access across services (#19164)
Tenant services often need to make function calls to other services inside the tenant system. This can cause a problem when a external system needs to inject middleware into the call stack for the secondary system call. For instance when a bucket is created we may need to alert the storage system of the change. To accomplish this we need a way for the org svc to call a middleware influxdb.BucketService that is a tenant type service wrapped with a middleware piece. This is accomplished by allowing the individual services access to the tenant system that was generated. If a middleware is wrapping one of the systems the embedded system can still make internal calls
2020-07-30 15:55:25 -06:00
Alirie Gray d1b8e98798
refactor: remove nested orgs labels route (#19104) 2020-07-30 10:53:14 -07:00
Jonathan A. Sternberg 8dd8d1f79e
feat(cmd/influx): modify the query cli to use the http api (#19076)
This modifies the query cli to remove the flux runtime dependency and
uses the public http api to execute the query. It then uses flux's csv
decoder to read the raw response.

This removes any dependency on the flux runtime and substantially
reduces the binary size and the startup execution time.
2020-07-30 12:44:48 -05:00
pierwill 4a81b5dd79
Merge pull request #19153 from influxdata/edit-fuzz-readme
fix: Edit FUZZ.md
2020-07-30 10:35:04 -07:00
pierwill 21f871aab4
fix: Edit FUZZ.md 2020-07-30 09:19:26 -07:00
Daniel Campbell bc4c19dfd8
feat(ui): Enhance resource creation experience when limits are reached (#19103)
* feat(ui): add AssetLimitOverlay

* feat(ui): enable create bucket button

* feat(ui): enable create dashboard and task buttons

* feat(ui): add reusable AssetLimitButton

* feat(ui): change alerts limit experience

* feat(ui): update changelog

* feat(ui): address review comments
2020-07-30 09:14:21 -07:00
Will Cooke 48814abab1
Merge pull request #19151 from influxdata/update-orgid-location-for-arduino
chore: Update orgID location and Token location for Arduino client library boilerplate.
2020-07-30 13:36:19 +01:00
Will Cooke d510884e48 chore: Update orgID location and Token location for Arduino client library boilerplate. 2020-07-30 13:10:52 +01:00
Pavel Zavora 1939eecbf9 chore: improve code doc 2020-07-30 02:37:51 +02:00
Pavel Zavora b58daa3b80 fix(endpoints): add test to validate secrets 2020-07-30 02:37:51 +02:00
Pavel Zavora 187485d8b6 fix(endpoints): do not override all secrets when an endpoint is created/updated #19081 2020-07-30 02:37:51 +02:00
Zoe Steinkamp c4972715c6
feat: Add Error Reporting to community templates (#19140)
* feat: Add Error Reporting to community templates

* Update ui/src/templates/components/CommunityTemplateImportOverlay.tsx

Co-authored-by: Bucky Schwarz <hoorayimhelping@users.noreply.github.com>

* Update ui/src/templates/containers/CommunityTemplatesIndex.tsx

Co-authored-by: Bucky Schwarz <hoorayimhelping@users.noreply.github.com>

* feat: Add Error Reporting to community templates

fix prettier

Co-authored-by: Bucky Schwarz <hoorayimhelping@users.noreply.github.com>
2020-07-29 15:36:01 -06:00
Yiqun (Ethan) Zhang baa8323431
fix: group resultset produces 1 table per group (#18968)
This helps resolve #18098
2020-07-29 15:31:29 -05:00
Alex Boatwright 1444df8557
revert: "feat: consolidate application state fetching (#19020)" (#19138)
This reverts commit 6d8083e97d.
2020-07-29 09:57:32 -07:00
Bucky Schwarz 382ff3a5dc feat(community-templates): show full path to github source 2020-07-29 09:39:37 -07:00
Bucky Schwarz 03eeb3184f feat(community-templates-ui): name templates based on the directory and the template name 2020-07-29 09:39:37 -07:00
Deniz Kusefoglu f490dd9693
feat(autoAggregate): BE work for autoAggregate (#19129)
* feat(autoAgg): fix pkger test

* feat(autoAgg): refrain from adding createEmpty to check query if exists

* feat(autoAgg): Fix check tests

* feat(autoAgg): Add fillValues to backend

* feat(autoAggregate): Add fillValues to swagger

* feat(autoAgg): indentation
2020-07-29 09:32:36 -07:00
Alex Boatwright 6d8083e97d
feat: consolidate application state fetching (#19020) 2020-07-29 09:24:19 -07:00
Jonathan A. Sternberg 0cdbd496f4
fix(query): paginate bucket results in the bucket lookup (#19111)
The `buckets()` command would use a bucket lookup that wrapped the
`FindBuckets` API. It did not use the pagination aspect of this API
correctly. When the underlying implementation was changed to a version
that correctly implemented pagination, this broke the query `buckets()`
command. Since it was query that used the API incorrectly rather than a
regression in the `FindBuckets` implementation, this fixes the usage to
correctly use pagination.
2020-07-29 11:23:13 -05:00
Johnny Steenbergen e7310b414c fix(pkger): update stacks with snapshot of all prevoius event resources 2020-07-28 15:58:59 -07:00
Zoe Steinkamp 0cc0d2ece5
feat: community template error message (#19117) 2020-07-28 16:43:29 -06:00
Alex Boatwright e729cdae02
fix: removing default sorting of table view (#19118) 2020-07-28 14:58:32 -07:00
Lyon Hill a7273f89d7
chore: Remove urmFreeTask feature flag (#19112)
This feature flag has been enabled for over a month in the production and have not seen any new issues arrise
2020-07-28 14:05:43 -06:00
Johnny Steenbergen d768132aaa feat(pkger): make envRef default values support more types
references: #18237
2020-07-28 12:22:46 -07:00
Bucky Schwarz 902cdebb66 fix: handle ui and file installed templates 2020-07-28 11:15:39 -07:00
Bucky Schwarz 573cdbb322 fix: loosen restrictions on what files we accept 2020-07-28 11:15:39 -07:00
Bucky Schwarz 443c599b0f chore: rename templates activity log to installed list 2020-07-28 11:15:39 -07:00
Johnny Steenbergen cbd5e08b38 fix(swagger): update nullable fields in PATCH /stacks/:stack_id 2020-07-28 10:34:05 -07:00
Alirie Gray 9ccd366398
refactor: remove outdated URM deletion from kv dashboard service (#19098) 2020-07-28 08:31:28 -07:00
George d1025b4962
feat(httpc): add error return argument to auth func (#19085) 2020-07-28 14:59:01 +01:00
Yiqun (Ethan) Zhang 8a27388601
feat: log query plan in metadata (#19100) 2020-07-27 17:14:49 -05:00
Alirie Gray 7ff2a9265d
refactor: remove outdated routes from swagger (#19102) 2020-07-27 15:07:45 -07:00
Ariel Salem 0595fe43f2
chore(reporting-version): added version reporting to events (#19093) 2020-07-27 12:55:25 -07:00
Ben Johnson 9802ae112d
Merge pull request #19091 from influxdata/mincore-panic-fix
fix(tsdb): Fix mincore wait() out of bounds calls
2020-07-27 12:52:44 -06:00
Alex Boatwright efabb57d46
fix: remove type errors from tooling update (#19090) 2020-07-27 11:20:02 -07:00
Bucky Schwarz b14d376e29 fix: show template name in ui 2020-07-27 11:04:16 -07:00
Bucky Schwarz 717cf29b24 fix: community templates UI should accept a single template file now 2020-07-27 11:04:16 -07:00
Bucky Schwarz 1124283e7d fix: only show install button if there are > 0 selected resources 2020-07-27 11:04:16 -07:00
Ben Johnson 14a82ee65d fix(tsdb): Fix mincore wait() out of bounds calls 2020-07-27 11:48:39 -06:00
Michael Desa f67c3a14e0
Revert "feat(notification/telegram): add telegram notification" (#19088) 2020-07-27 08:31:18 -07:00
Pavel Závora 5603c0275a
Merge pull request #18218 from influxdata/17899/telegramNotification
feat(notification/telegram): add telegram notification
2020-07-25 12:13:42 +02:00
Pavel Zavora bd8db8e3a2 chore: update changelog 2020-07-25 12:00:25 +02:00
Pavel Zavora d85f89437e feat(notification/telegram): test error on empty endpoint name 2020-07-25 11:59:04 +02:00