From d662961ebe19a1a311999ad03a839741d04e0469 Mon Sep 17 00:00:00 2001 From: Darrian Date: Fri, 23 Dec 2016 08:43:47 +0000 Subject: [PATCH] Added 'linear' to fill types for InfluxDB (#7042) --- public/app/plugins/datasource/influxdb/query_part.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/influxdb/query_part.ts b/public/app/plugins/datasource/influxdb/query_part.ts index 80c238a50b1..50358a544a1 100644 --- a/public/app/plugins/datasource/influxdb/query_part.ts +++ b/public/app/plugins/datasource/influxdb/query_part.ts @@ -267,7 +267,7 @@ register({ register({ type: 'fill', category: groupByTimeFunctions, - params: [{ name: "fill", type: "string", options: ['none', 'null', '0', 'previous'] }], + params: [{ name: "fill", type: "string", options: ['none', 'null', '0', 'previous', 'linear'] }], defaultParams: ['null'], renderer: functionRenderer, });