Commit Graph

56 Commits (23f282a05b0d2198ceecf8eef142779fccb17942)

Author SHA1 Message Date
Hunter Trujillo 759bb6bdec Merge branch 'master' into http-tcp
# Conflicts:
#	CHANGELOG.md
2017-02-10 13:31:01 -07:00
Andrew Watkins b794ade83b Merge pull request #856 from influxdata/de-organize
DE Reorganize
2017-02-10 11:52:55 -08:00
Chris Goller ffd743a1b0 Merge pull request #859 from influxdata/feature/server-gzip
Add gzip compression to all of our server responses and caching for assets
2017-02-10 10:27:21 -06:00
Chris Goller a523350bf0 Update CHANGELOG mentioning string fields compare kapacitor rules in Chronograf UI 2017-02-10 09:12:00 -06:00
Hunter Trujillo 29189296ce Update CHANGELOG, adding exec, smtp, and alerta support for kapacitor rule alert config. 2017-02-10 00:21:18 -07:00
Hunter Trujillo b06b141dde Update CHANGELOG: Add TCP and HTTP support to kapacitor rule alert config 2017-02-09 22:03:14 -07:00
Chris Goller e8c8aac0ba Update CHANGELOG to mention server gzip encoding and asset caching 2017-02-09 17:30:37 -06:00
Andrew Watkins 3bee87737c Update CHANGELOG 2017-02-09 11:33:50 -08:00
Chris Goller d33554ab99 Updated CHANGELOG to use yarn over npm install 2017-02-08 21:15:56 -06:00
Chris Goller 592fdd225c Update CHANGELOG to mention detail for kapa email alert 2017-02-07 17:11:46 -06:00
Chris Goller 6d43811bb7 Update release to 1.2.0-beta1 2017-01-27 18:43:42 -06:00
Tim Raymond 2102b779f4 Merge branch 'master' into feature/tr-host-under-path
Conflicts:
  - CHANGELOG.md
2017-01-27 19:30:43 -05:00
Andrew Watkins 7e2a87f3d2 Update CHANGELOG 2017-01-27 14:39:34 -08:00
Tim Raymond eadcf773ec Update CHANGELOG for #814 2017-01-27 17:11:37 -05:00
Chris Goller 62acebc5c4 Update CHANGELOG to add #774 2017-01-27 13:18:56 -06:00
Chris Goller 85e39567cb Update CHANGELOG to add procstat layout 2017-01-27 12:04:40 -06:00
Chris Goller 1649b83473 Update CHANGELOG to mention `inputs.net` telegraf layout 2017-01-27 11:36:21 -06:00
Nathan Haugo 3e8a101315 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
Gunnar b835030224 Merge branch 'master' into ga-version-header 2017-01-23 23:30:59 -08:00
gunnaraasen 4bef66aff7 Add X-Chronograf-Version header 2017-01-23 23:29:12 -08:00
Tim Raymond 37ce031071 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
Chris Goller 663712ce5f Update CHANGELOG about diskio layout 2017-01-14 13:20:24 -06:00
Chris Goller 8de723a7f1 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
Regan Kuchan 0cee62b53f Remove periods 2017-01-13 15:15:09 -08:00
Chris Goller b7d396c1a5 Update changelog to beta6 2017-01-13 16:46:32 -06:00
Andrew Watkins 1144047477 Merge pull request #766 from influxdata/rule-template
Rule template
2017-01-13 14:23:45 -08:00
Alex P a65592ffa5 Update Changelog 2017-01-13 14:15:04 -08:00
Chris Goller 1f0deddf49 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 4e3be5f360 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
Chris Goller 542dfa48dd Update CHANGELOG to fix bad link 2017-01-12 17:45:33 -06:00
gunnaraasen 07562efc3c Remove RPM posttrans scriptlet and small fixes 2017-01-11 15:52:06 -08:00
Chris Goller ca510c1075 Update changelog for kapacitor basic auth 2017-01-10 19:13:09 -06:00
nathan haugo 8221aa7df2 Add changelog for 706 and 707 2017-01-09 13:33:54 -08:00
Jack Zampolin 0f870a6853 Add changelog 2017-01-09 13:21:06 -08:00
Chris Goller 636ebedf22 Add Github organization restriction to authentication 2017-01-06 11:39:20 -06:00
nathan haugo 3075bbc592 Update changelog for 1.1.0-beta5 2017-01-05 15:40:15 -08:00
Chris Goller 8e0376cec4 Add insecureSkipVerify option to source to accept all influxdb certs
The insecureSkipVerify defaults to false, but when true, instructs
the server to accept any certificate coming from the InfluxDB server.
2017-01-04 19:35:07 -06:00
Chris Goller 5105224943 Fix mongo layout to remove extra fields 2017-01-04 18:17:23 -06:00
Nathan Haugo 12d75a115a Change direction of shift for relative rules (#717)
* Change direction of shift for relative rules

* Update changelog

* Fix tests

* Fix tests

* Update changelog for 718
2017-01-04 18:03:41 -06:00
nathan haugo d498ab3dfb Add missing word to changelog 2016-12-30 14:36:03 -08:00
nathan haugo a3f6accbe3 Update change log for beta 4 2016-12-30 14:23:43 -08:00
nathan haugo f79ee261cd Update change log for beta 4 2016-12-30 14:21:17 -08:00
Regan Kuchan 6ca1920eed Update the CHANGELOG for beta3 release 2016-12-16 15:13:18 -08:00
Will Piers 3fa3448c0c Update changelog 2016-12-14 14:58:15 -08:00
Chris Goller 5607efd191 Add CHANGELOG for beta2 2016-12-09 16:01:08 -06:00
Chris Goller 21d6d11f65 Update CHANGELOG 2016-12-08 21:17:54 -06:00
nathan haugo ce0c4ad665 Update changelog for 1.1.0-beta1 2016-12-06 11:47:23 -08:00
Andrew Watkins b9f3604f9e Update CHANGELOG 2016-12-05 14:59:57 -08:00
Andrew Watkins cea85aed7c Update CHANGELOG.md 2016-12-02 12:41:14 -08:00
Tim Raymond 19eff0044f Update changelog 2016-12-01 11:35:00 -05:00