Browse Source

Merge remote-tracking branch 'upstream/master'

Rashid Khan 12 years ago
parent
commit
cad7784d03
1 changed files with 5 additions and 4 deletions
  1. 5 4
      js/services.js

+ 5 - 4
js/services.js

@@ -89,9 +89,10 @@ angular.module('kibana.services', [])
       if(status === 0) {
         alertSrv.set('Error',"Could not contact Elasticsearch at "+config.elasticsearch+
           ". Please ensure that Elasticsearch is reachable from your system." ,'error');
-      } else {
-        alertSrv.set('Error',"Could not find "+config.elasticsearch+"/"+indices.join(',')+"/_mapping. If you"+
-          " are using a proxy, ensure it is configured correctly",'error');
+     } else {
+        alertSrv.set('Error',"No index found at "+config.elasticsearch+"/" +
+         indices.join(',')+"/_mapping. Please create at least one index."  +
+         "If you're using a proxy ensure it is configured correctly.",'error');
       }
     });
 
@@ -963,4 +964,4 @@ angular.module('kibana.services', [])
       return false;
     });
   };
-});
+});