From 7e5ace08b34596c58a8b4ad7f5c55cc2622abc9d Mon Sep 17 00:00:00 2001 From: Rashid Khan Date: Wed, 29 May 2013 13:26:31 -0700 Subject: [PATCH 1/2] Fix indent --- js/services.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/services.js b/js/services.js index d0716c3dc113b..ed12ee8607f6a 100644 --- a/js/services.js +++ b/js/services.js @@ -84,7 +84,7 @@ angular.module('kibana.services', []) }) .service('kbnIndex',function($http) { - // returns a promise containing an array of all indices matching the index + // returns a promise containing an array of all indices matching the index // pattern that exist in a given range this.indices = function(from,to,pattern,interval) { var possible = []; From 8d667ffe08a64b314404d7ce9c52c370d86afa57 Mon Sep 17 00:00:00 2001 From: Rashid Khan Date: Wed, 29 May 2013 16:30:48 -0700 Subject: [PATCH 2/2] Undoing protocol detection, probably better to enter the protocol manually --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index d2ac347dfeecf..a99a3c0c5fee1 100644 --- a/config.js +++ b/config.js @@ -17,7 +17,7 @@ var config = new Settings( // By default this will attempt to reach ES at the same host you have // elasticsearch installed on. You probably want to set it to the FQDN of your // elasticsearch host - elasticsearch: window.location.protocol+"//"+window.location.hostname+":9200", + elasticsearch: "http://"+window.location.hostname+":9200", // elasticsearch: 'http://localhost:9200', kibana_index: "kibana-int", modules: ['histogram','map','pie','table','stringquery','sort',