Commit Graph

5058 Commits (254fe95298157bb6bc9fe43a44dd6832b93db86c)

Author SHA1 Message Date
Hunter Trujillo 36a55459c7 Fix constructor on SMTPConfig. 2017-08-17 09:33:38 -07:00
Hunter Trujillo 7beccf7e94 Refactor OpsGenieConfig. 2017-08-17 09:33:38 -07:00
Hunter Trujillo 95933ebdb3 Refactor PurgerDurtur. 2017-08-17 09:33:38 -07:00
Hunter Trujillo 24f25ac11a Refactor SensuConfig. 2017-08-17 09:33:38 -07:00
Hunter Trujillo 56ecfb6a3d Refactor SlackConfig. 2017-08-17 09:33:38 -07:00
Hunter Trujillo 70c0626f8f Refactor SMTPConfig. 2017-08-17 09:33:38 -07:00
Hunter Trujillo f6a6b045cf Refactor Talk component and ref handler. 2017-08-17 09:33:38 -07:00
Hunter Trujillo b1dec147c0 Refactor ref handler in TelegramConfig. 2017-08-17 09:33:38 -07:00
Hunter Trujillo 0ad0c9d488 Remove arrow function from ref callback 2017-08-17 09:33:37 -07:00
Andrew Watkins 9be5952882 Remove :: in prop in MultiselectDropdown 2017-08-17 09:33:37 -07:00
Andrew Watkins 416df4498b Use arrow function properties in Dygraph 2017-08-17 09:33:37 -07:00
Andrew Watkins d8927287f2 Remove arrow function from props in DygraphLegend 2017-08-17 09:33:37 -07:00
Andrew Watkins 4bcfcdf2ab Remove deprecated component 2017-08-17 09:33:37 -07:00
Andrew Watkins 6c8ca878c5 Remove arrow functions from props 2017-08-17 09:33:37 -07:00
Andrew Watkins c4f1935d23 Remove arrow function from props in RedactedInput 2017-08-17 09:33:37 -07:00
Andrew Watkins 2db13c0cbf Remove anonymous fucntion from props in DatabaseRow 2017-08-17 09:33:37 -07:00
Andrew Watkins 4e901af55d Add arrow function properties to database admin 2017-08-17 09:33:37 -07:00
Andrew Watkins a1cc32a4db Update TagKeyDropdown component to use arrow function properties 2017-08-17 09:33:36 -07:00
Andrew Watkins a0be96ea0e Ignore ref binds 2017-08-17 09:33:36 -07:00
Andrew Watkins 8b9cceb52f Use arrow function properties in DatabaseRow 2017-08-17 09:33:36 -07:00
Andrew Watkins 88fae5bf44 Update AutoRefresh component 2017-08-17 09:33:36 -07:00
Andrew Watkins bd1096c28f Update Notifications component 2017-08-17 09:33:36 -07:00
Andrew Watkins 232c64f962 Add no binding rule 2017-08-17 09:33:36 -07:00
Andrew Watkins eacc8b3a0d Include babel-eslint plugin
An eslint plugin companion to babel-eslint. babel-eslint does a great
job at adapting eslint for use with Babel, but it can't change the built
in rules to support experimental features. eslint-plugin-babel
re-implements problematic rules so they do not give false positives or
negatives.
2017-08-17 09:33:36 -07:00
Hunter Trujillo 8dac1de5c2 Merge pull request #1744 from influxdata/feature/1685-moving-time-ranges
Custom date picker shortcuts
2017-08-16 19:52:24 -06:00
Jared Scheib cca1966e3c Rename shared shortcuts.hson to timeRangeShortcuts.hson for specificity 2017-08-16 16:59:58 -07:00
Hunter Trujillo ab942299d6 Reset upper when shortcut is clicked. 2017-08-16 15:47:59 -06:00
Hunter Trujillo 22400d2cf3 Split out shortcuts into an "hson" file. 2017-08-16 15:42:46 -06:00
Jared Scheib a58a9ced65 Merge pull request #1891 from influxdata/pagerduty-config
fix json key in pagerduty update
2017-08-16 14:04:58 -07:00
Jared Scheib 8c0c015f5f Update changelog 2017-08-16 13:58:46 -07:00
Timothy J. Raymond 61bffeb7cb Merge pull request #1859 from influxdata/feature/tr-layout-cell-axes
Add Axes to Layout Cells
2017-08-16 16:45:26 -04:00
Tim Raymond f26cd45f26 Update CHANGELOG for layout cell axes 2017-08-16 16:44:56 -04:00
Alex P 6ed22558fe Tweak micro copy 2017-08-16 12:38:58 -07:00
Alex P 2a161c8dba Rework styles to prevent some UI clash 2017-08-16 12:37:36 -07:00
Alex Paxton 309a768baf Merge branch 'master' into fix-legend-stat-wrap 2017-08-16 09:40:15 -07:00
Jade McGough c442a1d4d9 send ‘service-key’ instead of serviceKey to pagerduty 2017-08-16 00:15:13 -07:00
Jared Scheib 01e045199f Merge remote-tracking branch 'origin/1.3.6.x' 2017-08-15 15:03:20 -07:00
Tim Raymond 9b71477509 Switch KapacitorRulesGet to use Pagination
Kapacitor responses are paginated, and sometimes users have more than
the default 100 tasks that are returned from Kapacitor. This replaces
the previous Kapa client with one that automatically follows paginated
responses from Kapacitor's ListTasks endpoint and returns the full
response.

Tests for the KapacitorRulesGet endpoint had to be updated because they
did not account for "limit" and "offset", and so led to an infinite
loop with the paginated client. A correct kapacitor backend will not
have this behavior
2017-08-15 17:30:29 -04:00
Alex P d1621aaa3f Add FillQuery to rule builder 2017-08-15 14:18:25 -07:00
Alex P a30951590c Add theme prop to FillQuery 2017-08-15 14:17:56 -07:00
Alex P a6a5ab604b Add size prop to FillQuery 2017-08-15 14:08:16 -07:00
Tim Raymond fcf325bbbe Add PaginatingKapacitorClient
The kapacitor client used in the kapacitor endpoints is limited to
fetching whatever limit you provide it. If you provide no limit, it
defaults to a limit of 100. We use this default behavior currently.

Some users have more than 100 tasks, so we need a client that's capable
of continually fetching tasks from Kapacitor until there are none left,
and returning the full response to the frontend.

This introduces a PaginatingKapacitorClient which does exactly that.
Also, test coverage was added around the KapacitorRulesGet endpoint,
since it was previously untested.
2017-08-15 16:55:47 -04:00
Alex P e348db567a Add FillQuery to Query builder in CEO
- Doesn’t actually do anything, but this is where it would get used
2017-08-15 13:19:10 -07:00
Alex P e1e1a15879 Create fill query component 2017-08-15 13:17:46 -07:00
Jared Scheib 0632370417 Merge pull request #1858 from influxdata/feature/grooveknob
Refactor DisplayOptions UX to provide affirmative choice for 'auto', via a new component
2017-08-15 11:26:39 -07:00
Alex P 0e1c4739a5 Updoot changelog 2017-08-15 09:58:24 -07:00
Alex P ca35916c44 Fix for 1872 2017-08-15 09:55:31 -07:00
Jared Scheib 27a7aed0a3 Clarify data corruption release note, clean up changelog 2017-08-14 16:40:02 -07:00
Andrew Watkins c068a109bb Merge pull request #1870 from influxdata/chore/prop-on-div-error
Fix console spam about prop being placed on div
2017-08-14 15:53:54 -07:00
Andrew Watkins 65d0480f9d Prettier 2017-08-14 15:46:23 -07:00