Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
58ccc298
Commit
58ccc298
authored
Sep 07, 2013
by
spenceralger
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #469 from stephendotexe/update-404-error-message
Clarify error message.
parents
c6d8ea23
6a9a2b95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
js/services.js
+5
-5
No files found.
js/services.js
View file @
58ccc298
...
...
@@ -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
;
});
};
});
\ No newline at end of file
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment