Commit Graph

13541 Commits (ff820d5a3d8f27440b6f94037ab49886f987bad6)

Author SHA1 Message Date
Brandon Farmer 97cafe85c8
Merge pull request #2227 from influxdata/feat/timeRangeStart-flux-variable
Add timeRangeStart variable to queries as preamble
2019-01-04 13:23:41 -08:00
Palakp41 35a038795f
Merge pull request #2226 from influxdata/feat/orgs-members-filtering
Create dummy data for members and add filter box to the header
2019-01-04 12:07:40 -08:00
Palak Bhojani 25d792f052 Create dummy data for members and add filter box to the header 2019-01-04 11:55:18 -08:00
Nathaniel Cook 4918b15f35 refactor(http/query): update http query logic for new parser API 2019-01-04 11:28:55 -07:00
alexpaxton aa1f3d2444
Introduce Confirmation Buttons (#2223)
* Initial pass at Confirmation Delete component

* Require confirmation when deleting a dashboard

* Require confirmation when deleting a task

* Cleanup

* Write unit test

* Rewrite test to use jest mock function
2019-01-04 10:01:50 -08:00
Brandon Farmer e7c33d5c8e Add timeRangeStart variable to queries as preamble 2019-01-04 09:30:04 -08:00
Kelvin Wang f392f1bab0 fix(bolt): fix auth status update error 2019-01-04 12:21:34 -05:00
Michael Desa 3660cfc34a
Merge pull request #2235 from influxdata/fix/error-panic
fix(platform): check for (*platform.Error)(nil) in error functions
2019-01-04 11:23:39 -05:00
Michael Desa b590259a97 fix(platform): check for (*platform.Error)(nil) in error functions
As of https://github.com/influxdata/platform/pull/2192 a panic was
introduced in the startup of platform. It is the result of
`Error{Code,Op,Message}` being passed a `(*platform.Error)(nil)`
instead of an `(error)(nil)`.

Specifically
```
   if err == nil {
        return ""
    } else if e, ok := err.(*Error); ok && e.Code != "" {
        return e.Code
    }
```
will panic when err is `(*platform.Error)(nil)` as the `err == nil`
check will fail and the `e, ok := err.(*Error); ok && e.Code != ""` will
succeed and panic on `e.Code`, as `e` is nil.

This panic could have been avoided if all methods returned `error`
instead of `*platform.Error`.
2019-01-04 11:02:26 -05:00
Delmer 3dacbdf162
feat(ui): add field options to view (#2171) 2019-01-04 08:57:04 -05:00
Jade McGough 6a2554d6db test json formatting 2019-01-03 16:46:47 -08:00
Andrew Watkins 6eca18fc4e
fix(ui/org-view): org view polish
* fix(ui/org-view): list actual tasks from api

* fix(ui/org-view): fix dashboard list not rendering

* fix(ui/org-view): fix bucket modal

* feat(dashboards): add updated at column
2019-01-03 16:18:14 -08:00
Jade McGough a80a86c6c2 chore(http): add labels to bucket tests 2019-01-03 16:10:16 -08:00
Palakp41 ac7e9df407
Merge pull request #2219 from influxdata/feat/org-members-role-column
Update MembersList to include role column
2019-01-03 16:09:49 -08:00
Jade McGough 815795261d feat(http): add labels to bucket responses 2019-01-03 16:02:02 -08:00
Jade McGough 910d310c20 feat(http): add labels to telegraf GET responses 2019-01-03 16:02:02 -08:00
Palak Bhojani 21eb3a26d8 Update MembersList to include role column 2019-01-03 14:39:49 -08:00
Jade McGough 7562c9a6d2
chore(http): make test diffs more readable (#2203)
* chore(http): make test diffs more readable

* fixes

* add back telegraf output spacing

* whitespace hell

* jsonEqual2 -> jsonEqual
2019-01-03 14:29:22 -08:00
Palakp41 36d602822f
Merge pull request #2199 from influxdata/fix-range-now-function
Update range function example constant to include now() instead of now
2019-01-03 14:27:27 -08:00
kelwang 7751fb693a
Merge pull request #2207 from influxdata/check_org_id_before_create_bucket
fix(bolt): check org id exists before create bucket
2019-01-03 17:12:04 -05:00
Nathaniel Cook 52a6e7a69d
Merge pull request #2087 from influxdata/flux-staging
Update flux to v0.12.0
2019-01-03 15:11:10 -07:00
Palak Bhojani 56d1247e51 Update range function example constant to include now() instead of now 2019-01-03 14:10:38 -08:00
Palakp41 efcb11f850
Merge pull request #2206 from influxdata/telegraf-config-interval
Update telegraf.conf constant to 10 instead of 15
2019-01-03 14:06:14 -08:00
Palak Bhojani 029e3af719 Update telegraf.conf constant to 10 instead of 15 2019-01-03 13:32:35 -08:00
Palakp41 c727ced04b
Merge pull request #2196 from influxdata/feat/from-function-explorer
Remove pipe operator when 'from' is clicked on explorer
2019-01-03 13:26:28 -08:00
Brandon Farmer b08c231a08
Merge pull request #2200 from influxdata/feat/make-client-generation-skipable
Make client generation optional via ENV variable
2019-01-03 13:23:53 -08:00
Palak Bhojani def2cdc287 Function name is being condition for any from functions 2019-01-03 12:39:59 -08:00
Palak Bhojani aaffe604fa Revert "Merge branch 'feat/from-function-explorer' of github.com:influxdata/platform into feat/from-function-explorer"
This reverts commit 93ce63e9c9, reversing
changes made to 4c7dfe93de.
2019-01-03 12:37:46 -08:00
Palak Bhojani 93ce63e9c9 Merge branch 'feat/from-function-explorer' of github.com:influxdata/platform into feat/from-function-explorer 2019-01-03 12:33:52 -08:00
Palak Bhojani 4c7dfe93de Add parameter to the onclick on toolbar function to condition on the func name 2019-01-03 12:32:28 -08:00
Palakp41 88b4958054
Merge pull request #2201 from influxdata/feat/from-function-bucket-name
Update from function example to bucket_name instead of telegraf/autogen
2019-01-03 12:31:37 -08:00
Palak Bhojani b5802b273b Merge branch 'feat/from-function-explorer' of github.com:influxdata/platform into feat/from-function-explorer 2019-01-03 12:31:20 -08:00
Kelvin Wang de708f3e98 fix(bolt): check org id exists before create bucket 2019-01-03 15:20:13 -05:00
Palak Bhojani 6746d7ca22 Update from function example to bucket_name instead of telegraf/autogen 2019-01-03 11:52:48 -08:00
Brandon Farmer 547a147d6b Make client generation optional via ENV variable 2019-01-03 11:33:23 -08:00
Palak Bhojani 69fd6fddd6 Add parameter to the onclick on toolbar function to condition on the func name 2019-01-03 11:20:14 -08:00
Brandon Farmer 78744e4b0e
Merge pull request #2194 from influxdata/feat/dataloader-verify-line-protocol
Add verify step for line protocol onboarding
2019-01-03 10:59:12 -08:00
kelwang b6dc2736be
Merge pull request #2192 from influxdata/convert_source_error
fix(http): convert source errors
2019-01-03 13:56:02 -05:00
Jeff Wendling fbb22652e8
Merge pull request #1989 from influxdata/er-tombstone
Add support for prefix tombstone entries
2019-01-03 11:54:00 -07:00
Palak Bhojani ed424c713c Add parameter to the onclick on toolbar function to condition on the func name 2019-01-03 10:14:44 -08:00
Deniz Kusefoglu f79ed49a02
Merge pull request #2189 from influxdata/bugfix/tasks-error-messages
Fix error notifications on tasks
2019-01-03 18:04:44 +00:00
Brandon Farmer f06b258a13 Add verify step for line protocol onboarding 2019-01-03 09:57:39 -08:00
Christopher Henn 89e6851812 Upgrade Parcel to 1.11.0 2019-01-03 09:41:59 -08:00
Nathaniel Cook 2e2867217e chore: update Flux to v0.12.0 2019-01-03 09:49:24 -07:00
Kelvin Wang 739d12bc00 fix(http): convert source errors 2019-01-03 11:38:01 -05:00
Michael Desa c4c374a0b4
Merge pull request #2180 from influxdata/fix/issue#1918
Add support for get /api/v2/query
2019-01-03 10:43:55 -05:00
Deniz Kusefoglu 9df87928ec Fix error notifications on tasks 2019-01-03 13:37:33 +00:00
Palakp41 0e29cd1dd5
Merge pull request #2186 from influxdata/feat/copy-button-float-right
Style copy button to float right in the text area
2019-01-02 14:43:34 -08:00
Palak Bhojani 1c6f188f58 Style copy button to float right in the text area 2019-01-02 14:30:52 -08:00
Adam c80628fbfa
Merge pull request #2184 from influxdata/flux-staging-update-master
Flux staging update master
2019-01-02 16:10:27 -05:00