Commit Graph

1558 Commits (3ead540f759fc24faef718386c61d8699568c7bc)

Author SHA1 Message Date
Hunter Trujillo 9fbbdedc69 Add dygraphSeries. Tests pass. 2017-01-25 14:25:03 -07:00
Andrew Watkins 93dc0ca125 WIP handle duplicate field and measurement names
This solution can now handle an arbitrary number of
responses and series.  Once we munge the series out
into one flat collection, we utilize the index of each
series to identify duplicate labels.
2017-01-24 11:50:41 -08:00
Nathan Haugo 93dd2f7418 Merge pull request #786 from influxdata/fix-alert-filter
Fix alert filter
2017-01-24 11:13:55 -08:00
Nathan Haugo 146993fe6a Merge pull request #779 from influxdata/feature/layout-diskio
Add layout for telegraf's system diskio plugin
2017-01-24 11:13:07 -08:00
Nathan Haugo 447cc299e3 Merge pull request #772 from influxdata/ga-version-header
Add X-Chronograf-Version header
2017-01-24 11:12:35 -08:00
Gunnar cd4fbc0f29 Merge branch 'master' into ga-version-header 2017-01-23 23:30:59 -08:00
gunnaraasen 58a2a82d52 Add X-Chronograf-Version header 2017-01-23 23:29:12 -08:00
Andrew Watkins 73d6d624a3 WIP all the refactors and in teh darkness bind them 2017-01-23 21:14:39 -08:00
Andrew Watkins 9cb38ae4ba WIP Fix label ordering bug 2017-01-23 16:08:45 -08:00
Andrew Watkins 005f834f53 Introduce Talk alert config 2017-01-23 13:07:37 -08:00
Andrew Watkins 415ea19ebc Merge pull request #790 from influxdata/remove-checkboxes
Remove checkboxes
2017-01-23 11:45:00 -08:00
Andrew Watkins 119c397c8f Merge pull request #788 from influxdata/bugfix/tr-missing-field-keys
Fix missing fields from non-default RP
2017-01-23 11:42:28 -08:00
Andrew Watkins 7898ecfc67 Match order of keys 2017-01-23 11:30:10 -08:00
Andrew Watkins 2639ed3833 Remove state change only checkbox from Telegram 2017-01-23 11:27:01 -08:00
Andrew Watkins 267adaf76b Remove state change only checkbox from HipChat 2017-01-23 11:26:50 -08:00
Tim Raymond 70fe343e19 Fix missing fields from non-default RP
When attempting to extract fields from a non-default retention policy in
the Data Explorer, fields would not appear. This was because the query
was sent without an explicit RP, which would use the default RP instead.
This adds an explicit RP to the SHOW FIELDS query.
2017-01-23 09:54:56 -05:00
Andrew Watkins 0375d88e2f Merge pull request #787 from influxdata/rule-copy
Fix copy and templated string
2017-01-20 15:20:55 -08:00
Andrew Watkins 18849d3fda Fix copy and templated string 2017-01-20 13:35:18 -08:00
Andrew Watkins caa1bb32af Fix laggy input typing 2017-01-20 13:22:08 -08:00
Andrew Watkins 035d6f4e81 Make AlertTable source of truth for search term 2017-01-20 12:43:18 -08:00
Andrew Watkins 07e9634939 Fix duplicate children error spam 2017-01-20 12:27:17 -08:00
Andrew Watkins e9a25ea8e8 Fix filtering in alerts table 2017-01-20 12:27:00 -08:00
Chris Goller e4b7628bc1 Update CHANGELOG about diskio layout 2017-01-14 13:20:24 -06:00
Chris Goller 9f7e3c7c14 Add layout for telegraf's system diskio plugin
diskio are counters that give the total reads/writes since
a system reboot.
2017-01-14 13:10:39 -06:00
Jade McGough 979cc311ef add dashboardpage to router 2017-01-13 17:40:40 -08:00
Jade McGough 7e0c687476 add link to individual dashboard page 2017-01-13 17:40:40 -08:00
Jade McGough 6abd9f1090 get dashboards to load correctly 2017-01-13 17:40:40 -08:00
Chris Goller 16108f0321 Update circle typos 2017-01-13 18:26:41 -06:00
Chris Goller 5057f57e09 Fix circle typo 2017-01-13 18:08:15 -06:00
Chris Goller 5186e71be4 Merge pull request #771 from influxdata/feature/b6
Update changelog and release notes to beta6
2017-01-13 17:16:17 -06:00
Regan Kuchan 7de4cb2082 Remove periods 2017-01-13 15:15:09 -08:00
Chris Goller 975f11ac96 Update changelog to beta6 2017-01-13 16:46:32 -06:00
Andrew Watkins 9c84593d67 Merge pull request #766 from influxdata/rule-template
Rule template
2017-01-13 14:23:45 -08:00
Alex P c2013be56a Update Changelog 2017-01-13 14:15:04 -08:00
Alex P 4cfde2c6cc Make rule message placeholder more informative 2017-01-13 14:12:14 -08:00
Alex P 2879f81150 Move rule message templates to correct constants file 2017-01-13 14:02:31 -08:00
Chris Goller aebc05241a Merge pull request #748 from influxdata/bugfix/tr-missing-kapa
Fix missing Kapacitor on Source index page
2017-01-13 14:29:14 -06:00
Tim Raymond d35b64fa84 Fix missing Kapacitor on Source index page
When visiting the Sources page, any InfluxDB sources that had a
configured Kapacitor would not show them. This turned out to be racey
logic. Kapacitors for a particular source are fetched from the API. The
update to the component state happened outside of the promise chained
onto the API call, so the state update was racing against the fetch from
the API (and would always win, pushing the empty object).

Instead, the chained promises for each API fetch are collected, and each
promise updates a single kapacitors object. The final promise that
updates the state is then blocked on all those promises by Promise.all.

Performing updates like this saves some allocations, since we aren't
allocating an object for each source<->kapacitor pairing to send to
setState. It also reduces setState's work, since it doesn't have to
coalesce state updates.
2017-01-13 15:21:39 -05:00
Alex P e0282bc6e8 Show pointer cursor on template hover 2017-01-13 12:02:13 -08:00
Andrew Watkins c71a1113d9 Add functionality to append templates to rule message 2017-01-13 11:56:17 -08:00
Andrew Watkins 7dad6f41de Merge pull request #770 from influxdata/add-source-bug
Fix not being able to add new source
2017-01-13 11:31:12 -08:00
Andrew Watkins d12bc949bd Merge pull request #768 from influxdata/feature/337-proper-link
add links to hosts in alerts table
2017-01-13 11:24:54 -08:00
Andrew Watkins fc9050cb32 Fix not being able to add new source 2017-01-13 11:23:35 -08:00
Jade McGough a3c160e13a add links to hosts in alerts table 2017-01-13 00:27:12 -08:00
Nathan Haugo 3624bd48a1 Merge pull request #767 from influxdata/feature/add-docker-release-tag
Update circle builds of release tags to upload docker containers to quay
2017-01-12 17:39:33 -08:00
Chris Goller 5142932d6c Update build markdown output to be more user friendly 2017-01-12 18:42:48 -06:00
Chris Goller 5932581bd6 Update circle building of release tags to upload docker containers to quay 2017-01-12 18:11:12 -06:00
Chris Goller e5da9b6ace Update CHANGELOG to fix bad link 2017-01-12 17:45:33 -06:00
Andrew Watkins 281fa44a71 Merge pull request #760 from influxdata/remove-checkboxes
Remove checkboxes
2017-01-12 15:27:39 -08:00
Andrew Watkins 165756b475 Change template hover to text cursor 2017-01-12 15:22:50 -08:00