Commit Graph

12032 Commits (e13fc0173d164e6fb9908891e1abb04a618b7557)

Author SHA1 Message Date
Delmer e13fc0173d
Update version to 1.7.4 (#4883) 2018-12-12 16:21:04 -05:00
alexpaxton c224c3896b
Prevent cell renaming widget from pushing other header elements offscreen (#4872)
* Prevent cell renaming widget from pushing other header elements offscreen

* Updoot changelog
2018-12-12 10:35:00 -08:00
Brandon Farmer 26cdd86198
Merge pull request #4880 from influxdata/fix/sensu-fix-changelog
Update changelog
2018-12-12 09:27:15 -08:00
Brandon Farmer 4e1a042922 Update changelog 2018-12-12 09:24:35 -08:00
Delmer ab592b7b68
Fix flux editor scrollbars (#4877) 2018-12-11 19:36:43 -05:00
Brandon Farmer a355f37178
Merge pull request #4874 from influxdata/chore/update-error-template
Update the error issue template with questions
2018-12-10 16:51:59 -08:00
Brandon Farmer f1287fd80a Update the error issue template with questions 2018-12-10 16:37:33 -08:00
Delmer d508deecec
Fix logs histogram bar click (#4863)
* Fix logs table rendering

* Fix histogram bars

* Add test for finding time option row index

* Remove logs table query counting

* Remove histogram chart fixes

Removes the histogram chart axes changes and bar chart changes.

* Update state query count

* Fix histogram centering

* update changelog
2018-12-07 18:31:50 -05:00
Christopher Henn 1728f2c5e2 Improve display of Flux Wizard on small screens 2018-12-03 14:54:37 -08:00
Delmer 9e171f6df1
Fix logs query error (#4861) 2018-12-03 16:34:53 -05:00
Brandon Farmer 85ed525a59
Merge pull request #4840 from influxdata/fixes/rule-idvar
Provide valid characters for idVar with Sensu
2018-11-30 13:51:10 -08:00
Brandon Farmer bc3e96e71d
Merge pull request #4846 from influxdata/fixes/show-databases
Provide a default for type and data in RefreshingGraph
2018-11-30 10:03:50 -08:00
Brandon Farmer 86297bda18 Update changelog 2018-11-30 09:51:55 -08:00
Brandon Farmer 0a98f75cec Provide a default for type and data in RefreshingGraph 2018-11-30 09:51:55 -08:00
Brandon Farmer dbd19ec167
Merge pull request #4853 from influxdata/fixes/update-npmrc
Remove .npmrc file
2018-11-30 09:50:59 -08:00
Delmer 3da5583a30
Fix flux stat graphs (#4856) 2018-11-30 10:25:13 -05:00
Alirie Gray bd256762e3
Merge pull request #4845 from influxdata/fix/skip-kapacitor-connection
Allow skipping add Kapacitor step
2018-11-29 12:33:47 -08:00
Nathan Haugo 5fead1ac58
Update flux functions (#4854)
* Update flux functions

* Update changelog

* Fix link
2018-11-29 12:09:26 -08:00
Brandon Farmer 43dc8e992f Remove .npmrc file 2018-11-29 09:52:38 -08:00
Alirie Gray c2c5a6686f Allow skipping add Kapacitor step 2018-11-28 16:36:44 -08:00
Nathan Haugo 19b4c91d4d
Update versions in the readme (#4841)
* Update versions in the readme

* Fix typo

* Fix typo
2018-11-27 18:19:02 -08:00
Brandon Farmer 09bbceebd5 Provide valid characters for idVar with Sensu 2018-11-27 15:36:47 -08:00
Christopher Henn 590040153c Update CHANGELOG.md 2018-11-15 13:42:37 -08:00
Christopher Henn a5ab75cfb8 Don't display empty data notes when data is loading
Closes #4804
2018-11-15 13:40:17 -08:00
Christopher Henn ab567d292a Fix UUID rendering in table graphs
Second time is the charm for fixing #4726 :)

Closes #4818
2018-11-15 13:40:17 -08:00
Delmer 27f50dcec2
Fix logs loading newer (#4814)
Fix logs loading newer scroll 

* Fix logs loading newer
* Update changelog 1.7.4 bug fixes
2018-11-14 15:01:20 -05:00
Nathan Haugo 7ccd1e0fa8
Fixes/clean up changelog (#4815)
* Add 1.7.4 section, 1.7.3 release date, and make file more consistent

* Remove dupe 1.7.3
2018-11-14 11:26:56 -08:00
Iris Scholten 5e060cdcf7
Merge pull request #4809 from influxdata/fix/loading-protoboards
Add loading state to protoboards onboarding step
2018-11-13 13:01:52 -08:00
Iris Scholten 7beb915a88 Add loading state to protoboards onboarding step 2018-11-13 12:39:18 -08:00
Deniz Kusefoglu 291121c0ae Update Changelog 2018-11-13 11:55:14 -08:00
Iris Scholten 9e51b6246a
Merge pull request #4810 from influxdata/update-changelog-4788
Update Changelog
2018-11-13 09:47:00 -08:00
Iris Scholten d722bb0401 Update Changelog 2018-11-13 09:35:41 -08:00
Iris Scholten 51833e3620
Merge pull request #4788 from pabigot/fix/canned
fix canned apps for template variables
2018-11-13 09:31:11 -08:00
Deniz Kusefoglu a42709090c
Merge pull request #4808 from influxdata/bugfix/add-x-to-wizard-overlay
Remove dismiss text from and add x-to-dismiss to wizard overlay steps
2018-11-12 15:55:38 -08:00
Deniz Kusefoglu 83ba0357f5 Remove dismiss text from and add x-to-dismiss to wizard overlay steps 2018-11-12 15:34:52 -08:00
Christopher Henn a994ab8e78 Fix grouping in canned queries
Chronograf includes a number of canned dashboards, whose cells are predefined
and immutable. A cell in a canned dashboard is called a layout cell, and it has
a slightly different schema than a cell in a user-defined dashboard (called
a dashboard cell).

For legacy reasons, Chronograf is able to render a layout cell or dashboard
cell using the same components via a mix of duck-typing and defensive
programming. [#4488][0] attempted to unify the differences between the two
possible cell schemas by converting a layout cell to a dashboard cell upon
read. This schema conversion was error prone and incomplete.

One difference between a layout cell and dashboard cell that was not handled by
the schema conversion involved the `groupbys` and `wheres` fields in a layout
cell. In a dashboard cell, these data are stored in the `queryConfig` object
instead. The schema conversion omitted these data altogether in the converted
cell, which caused the behavior described in [#4789][1]

This commit changes to schema conversion to include all data from the original
layout cell in the converted cell, so that the `groupbys` and `wheres` fields
are present. Downstream, the `Layout` component will check for these fields
when determining how to build a query for a cell.

This is a messy solution that builds upon previous messy solutions. [#4488][0]
discusses some alternatives, which were deemed not worth the effort to
implement.

[0]: https://github.com/influxdata/chronograf/pull/4488
[1]: https://github.com/influxdata/chronograf/issues/4789
2018-11-12 13:59:06 -08:00
Peter A. Bigot b4a9711d08 Add template variables db and rp to missed canned layouts
Original patch failed to apply these to some files due to a
case-sensitive replacement.
2018-11-12 15:18:13 -06:00
Peter A. Bigot 1d9fcd8b1f passim: normalize query case
Make SELECT, AS, FROM consistently upper case in query, so future batch
replacements work properly.
2018-11-12 15:17:00 -06:00
Alirie Gray 794df96f39
Add fieldOptions when creating new cell from SendToDashboard (#4791) 2018-11-12 11:53:33 -08:00
Andrew Watkins 230e4a3c62
fix(db-admin): only handle db state on db create (#4805) 2018-11-12 11:51:49 -08:00
Deniz Kusefoglu 506ecfb9c0
Merge pull request #4796 from influxdata/update-protoboards
Update docker, influxdb and postresql protoboards
2018-11-12 09:46:01 -08:00
Deniz Kusefoglu a5b5733add Fix typo on influxdb protoboard. 2018-11-12 09:34:06 -08:00
Deniz Kusefoglu c99a4b0b2f Add db/rps to ping, rabbitmq, elasticsearch, varnish and capitalize 2018-11-12 09:31:51 -08:00
Deniz Kusefoglu c9f66591f1 Update docker, influxdb and postresql protoboards 2018-11-12 09:31:51 -08:00
Nathan Haugo 82766c317f
Merge pull request #4799 from influxdata/fixes/add-changelog-for-4798
Add changelog entry for pr 4798
2018-11-09 16:56:02 -08:00
nathan haugo c9a5d5094e Add changelog entry for pr 4798 2018-11-09 16:52:18 -08:00
Nathan Haugo bcc6ab8a9e
Merge pull request #4798 from influxdata/fixes/ping-fix
Fix ping canned dashboard
2018-11-09 16:49:45 -08:00
nathan haugo 2416c40a07 Fix ping canned dashboard 2018-11-09 16:42:25 -08:00
Brandon Farmer 93429b3d20
Merge pull request #4794 from influxdata/fixes/basepath-fix
Handle basepath issue with missing slash
2018-11-09 16:32:18 -08:00
Brandon Farmer 55ba63a98f Fix linting issues in functions contants 2018-11-09 16:19:34 -08:00