diff --git a/CHANGELOG.md b/CHANGELOG.md index 93f5df85d..4f5308c7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ 1. [#1370](https://github.com/influxdata/chronograf/pull/1370): Remove notification to login outside of session timeout 1. [#1376](https://github.com/influxdata/chronograf/pull/1376): Fix queries built in query builder with math functions in fields 1. [#1399](https://github.com/influxdata/chronograf/pull/1399): User can no longer create a blank template variable by clicking outside a newly added one + 1. [#1406](https://github.com/influxdata/chronograf/pull/1406): Ensure thresholds for Kapacitor Rule Alerts appear on page load ### Features 1. [#1382](https://github.com/influxdata/chronograf/pull/1382): Add line-protocol proxy for InfluxDB data sources diff --git a/chronograf.go b/chronograf.go index 4ee500b1e..f3d4796e1 100644 --- a/chronograf.go +++ b/chronograf.go @@ -256,12 +256,12 @@ type Ticker interface { // TriggerValues specifies the alerting logic for a specific trigger type type TriggerValues struct { - Change string `json:"change,omitempty"` // Change specifies if the change is a percent or absolute - Period string `json:"period,omitempty"` // Period length of time before deadman is alerted - Shift string `json:"shift,omitempty"` // Shift is the amount of time to look into the past for the alert to compare to the present - Operator string `json:"operator,omitempty"` // Operator for alert comparison - Value string `json:"value,omitempty"` // Value is the boundary value when alert goes critical - RangeValue string `json:"rangeValue,omitempty"` // RangeValue is an optional value for range comparisons + Change string `json:"change,omitempty"` // Change specifies if the change is a percent or absolute + Period string `json:"period,omitempty"` // Period length of time before deadman is alerted + Shift string `json:"shift,omitempty"` // Shift is the amount of time to look into the past for the alert to compare to the present + Operator string `json:"operator,omitempty"` // Operator for alert comparison + Value string `json:"value,omitempty"` // Value is the boundary value when alert goes critical + RangeValue string `json:"rangeValue"` // RangeValue is an optional value for range comparisons } // Field represent influxql fields and functions from the UI