alexpaxton
dd1620eb55
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 15:19:13 -08:00
nathan haugo
49fd1ec13c
Clean up changelog
2018-12-12 14:06:53 -08:00
Delmer Reed
34b0f224b1
Add hashtag prefixes changelog 1.7.4
2018-12-12 16:31:53 -05:00
Delmer Reed
bc37101e76
Update version to 1.7.4
2018-12-12 16:20:04 -05:00
Delmer Reed
4cf7360926
Fix linting error
2018-12-12 16:20:04 -05:00
Delmer Reed
0b9d81c155
Add missing 4805 changelog entry
2018-12-12 16:20:04 -05:00
Andrew Watkins
b93620e4d6
fix(db-admin): only handle db state on db create ( #4805 )
2018-12-12 16:20:04 -05:00
Delmer Reed
d3b69d76b6
Add missing fixes from #4776
2018-12-12 16:20:04 -05:00
Lorenzo Fontana
cc040f270a
fix(flux/pivot): specify the right key for columnKey and valueKey
...
Signed-off-by: Lorenzo Fontana <lo@linux.com>
2018-12-12 16:20:04 -05:00
Delmer Reed
33b2a71fe0
Add missing changelog 1.7.4 bug fix
2018-12-12 16:20:04 -05:00
Delmer Reed
f210bbc553
Fix 1.7.4 CHANGELOG bug fixes
2018-12-12 16:20:04 -05:00
Brandon Farmer
f9fac5c715
Update changelog
2018-12-12 09:27:57 -08:00
Delmer
ead30d8094
Fix flux editor scrollbars ( #4877 )
2018-12-11 20:19:13 -05:00
Brandon Farmer
9ad3b80365
Update the error issue template with questions
2018-12-10 16:52:39 -08:00
Delmer
7b436643c7
Fix flux stat graphs ( #4856 )
2018-12-07 18:42:45 -05:00
Delmer
5e2449ecac
Fix logs query error ( #4861 )
2018-12-07 18:40:23 -05:00
Delmer
ef87b41de0
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:34:54 -05:00
Christopher Henn
8f491d3079
Improve display of Flux Wizard on small screens
2018-12-03 14:55:25 -08:00
Alirie Gray
6dcf960be9
Allow skipping add Kapacitor step
2018-12-03 14:53:53 -08:00
Brandon Farmer
d1e33e4cd5
Update changelog
2018-12-03 11:11:31 -08:00
Brandon Farmer
776a4ac501
Provide a default for type and data in RefreshingGraph
2018-12-03 11:11:17 -08:00
Brandon Farmer
246a2719fe
Remove .npmrc file
2018-12-03 11:11:07 -08:00
Brandon Farmer
dbbfa1db74
Provide valid characters for idVar with Sensu
2018-12-03 11:10:53 -08:00
Christopher Henn
140433b084
Update CHANGELOG.md
2018-11-15 13:44:17 -08:00
Christopher Henn
d559ac634d
Don't display empty data notes when data is loading
...
Closes #4804
2018-11-15 13:43:53 -08:00
Christopher Henn
6825d1bb80
Fix UUID rendering in table graphs
...
Second time is the charm for fixing #4726 :)
Closes #4818
2018-11-15 13:43:53 -08:00
Delmer
a30c13f6c2
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:03:56 -05:00
Nathan Haugo
149a4253db
Merge pull request #4812 from influxdata/release/1.7.3-bump-change
...
Update changelog and bump version
2018-11-13 16:38:47 -08:00
nathan haugo
b90a8dea0b
Update changelog and bump version
2018-11-13 16:37:56 -08:00
Iris Scholten
95203c10b2
Add loading state to protoboards onboarding step
2018-11-13 13:02:41 -08:00
Deniz Kusefoglu
726a011baa
Update Changelog
2018-11-13 11:56:08 -08:00
Iris Scholten
cb194b169f
Update Changelog
2018-11-13 09:51:32 -08:00
Peter A. Bigot
719885a0e1
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-13 09:51:02 -08:00
Peter A. Bigot
d0e3beef24
passim: normalize query case
...
Make SELECT, AS, FROM consistently upper case in query, so future batch
replacements work properly.
2018-11-13 09:50:50 -08:00
Deniz Kusefoglu
081b535144
Remove dismiss text from and add x-to-dismiss to wizard overlay steps
2018-11-12 15:56:56 -08:00
Christopher Henn
ef90cffe9b
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 14:04:56 -08:00
Deniz Kusefoglu
a22cac579d
Fix typo on influxdb protoboard.
2018-11-12 09:50:41 -08:00
Deniz Kusefoglu
48f8c396ff
Add db/rps to ping, rabbitmq, elasticsearch, varnish and capitalize
2018-11-12 09:50:30 -08:00
Deniz Kusefoglu
d2df6dc822
Update docker, influxdb and postresql protoboards
2018-11-12 09:50:16 -08:00
nathan haugo
cd518af486
Add changelog entry for pr 4798
2018-11-09 16:57:05 -08:00
nathan haugo
98de30e86b
Fix ping canned dashboard
2018-11-09 16:46:34 -08:00
Brandon Farmer
52b9b3724e
Update changelog
2018-11-09 16:33:09 -08:00
Brandon Farmer
7bcffde792
Handle basepath issue with missing slash
2018-11-09 16:33:00 -08:00
Deniz Kusefoglu
573cdff30a
Add protoboards bugfix to 1.7.3 release list
2018-11-08 17:58:21 -08:00
Deniz Kusefoglu
d7afea50ff
Get protoboards from multistore if not able to find from ProtoboardsPath
2018-11-08 17:49:58 -08:00
Nathan Haugo
62ecf3b038
Merge pull request #4780 from influxdata/release/1.7.2-bump
...
Bumpversion for 1.7.2
2018-11-08 12:28:59 -08:00
nathan haugo
1e33834906
Bumpversion for 1.7.2
2018-11-08 12:27:52 -08:00
Nathan Haugo
16adf6fedd
Merge pull request #4779 from influxdata/fixes/cleanup-1.7.2-changelog
...
Fixes/cleanup 1.7.2 changelog
2018-11-08 12:26:37 -08:00
nathan haugo
b27b4679ad
Cleanup changelog for release
2018-11-08 12:25:41 -08:00
nathan haugo
b0588c25a3
Cleanup changelog for release
2018-11-08 12:25:14 -08:00