Dear Folks:
I'm trying to get Kibana 3.1.1 deployed via chef, wrapped by an nginx
proxy. Elastic Search version 1.3.2 is running on the same node.
When I try to show a Kibana dashboard, I can see the basic text that
appears in the dashboard, but I don't see any of the CSS styling. For
example, I see a list of the different time ranges that could be selected
from a drop down, but it's not functioning as a drop down.
Here's what I've tried:
- Cleared browser cache
- Tried Chrome, Firefox, Safari
- Looked in developer mode on each browser to see if any network request
was failing (none were failing) (this includes requests for css files as
well as requests to elastic search, i.e., _nodes and _aliases). Further, I
see no javascript errors in the developer console. - Search this google group for help.
It looks like the CSS is in fact loading (according to the developer
console).
Here's my nginx proxy configuration:
server {
listen 0.0.0.0:80;
server_name kibana.localhost kibana;
access_log /var/log/nginx/kibana.localhost.access.log;
location / {
root /opt/kibana/current;
index index.html index.htm;
}
location ~ ^/_aliases$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/.*/_aliases$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/_nodes$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/.*/_search$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/.*/_mapping$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/_cluster/health$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
password protected end points
location ~ ^/kibana-int/dashboard/.*$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/kibana-int/temp.*$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
}
Here's the Kibana config.js:
define(['settings'],
function (Settings) {
"use strict";
return new Settings({
elasticsearch: window.location.protocol+"//"+window.location.hostname+
":"+window.location.port,
kibana_index: "kibana-int",
default_route: "/dashboard/file/logstash.json",
panel_names: ["histogram", "map", "pie", "table", "filtering",
"timepicker", "text", "fields", "hits", "dashcontrol", "column",
"derivequeries", "trends", "bettermap", "query", "terms"]
});
});
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/08cc28cb-2df4-4d18-8112-c0c4126fabd2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.