From 1d556aaa80b28a4486626a69edf8e944cd85b4e6 Mon Sep 17 00:00:00 2001 From: Regan Kuchan Date: Tue, 28 Feb 2017 13:18:31 -0800 Subject: [PATCH] Add link to InfluxDB Holt-Winters documentation --- pipeline/influxql.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline/influxql.go b/pipeline/influxql.go index 962cbdab8..3dc8d62be 100644 --- a/pipeline/influxql.go +++ b/pipeline/influxql.go @@ -453,12 +453,12 @@ func (n *chainnode) MovingAverage(field string, window int64) *InfluxQLNode { return i } -// Compute the holt-winters forecast of a data set. +// Compute the holt-winters (https://docs.influxdata.com/influxdb/latest/query_language/functions/#holt-winters) forecast of a data set. func (n *chainnode) HoltWinters(field string, h, m int64, interval time.Duration) *InfluxQLNode { return n.holtWinters(field, h, m, interval, false) } -// Compute the holt-winters forecast of a data set. +// Compute the holt-winters (https://docs.influxdata.com/influxdb/latest/query_language/functions/#holt-winters) forecast of a data set. // This method also outputs all the points used to fit the data in addition to the forecasted data. func (n *chainnode) HoltWintersWithFit(field string, h, m int64, interval time.Duration) *InfluxQLNode { return n.holtWinters(field, h, m, interval, true)