Commit 58ccc298 by spenceralger

Merge pull request #469 from stephendotexe/update-404-error-message

Clarify error message.
parents c6d8ea23 6a9a2b95
...@@ -89,9 +89,10 @@ angular.module('kibana.services', []) ...@@ -89,9 +89,10 @@ angular.module('kibana.services', [])
if(status === 0) { if(status === 0) {
alertSrv.set('Error',"Could not contact Elasticsearch at "+config.elasticsearch+ alertSrv.set('Error',"Could not contact Elasticsearch at "+config.elasticsearch+
". Please ensure that Elasticsearch is reachable from your system." ,'error'); ". Please ensure that Elasticsearch is reachable from your system." ,'error');
} else { } else {
alertSrv.set('Error',"Could not find "+config.elasticsearch+"/"+indices.join(',')+"/_mapping. If you"+ alertSrv.set('Error',"No index found at "+config.elasticsearch+"/" +
" are using a proxy, ensure it is configured correctly",'error'); 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', []) ...@@ -963,4 +964,4 @@ angular.module('kibana.services', [])
return false; return false;
}); });
}; };
}); });
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment