From 40845578c695c99ab75186937c7cae82be642869 Mon Sep 17 00:00:00 2001 From: Byron Date: Thu, 7 Jan 2016 14:39:20 -0800 Subject: [PATCH] Fix elasticsearch hourly indexes --- public/app/plugins/datasource/elasticsearch/index_pattern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/elasticsearch/index_pattern.js b/public/app/plugins/datasource/elasticsearch/index_pattern.js index d565e22c0b6..6b26e41e1c5 100644 --- a/public/app/plugins/datasource/elasticsearch/index_pattern.js +++ b/public/app/plugins/datasource/elasticsearch/index_pattern.js @@ -11,7 +11,7 @@ function (_, moment) { } IndexPattern.intervalMap = { - "Hours": { startOf: 'hour', amount: 'hours'}, + "Hourly": { startOf: 'hour', amount: 'hours'}, "Daily": { startOf: 'day', amount: 'days'}, "Weekly": { startOf: 'isoWeek', amount: 'weeks'}, "Monthly": { startOf: 'month', amount: 'months'},