Widget Border + Reloading

Hello! :slight_smile:

Today i switched from elk stack <5 to 5.

There are many great new thinks, but:

Is there a way to get the widget borders back? In the current layout it is really hard for me to get the right data. :wink:

Maybe there is a varable in the management to edit the css from kibana?

The other thing thats drive me a little bit crazy are full page reloads on changing the dashboards. This was a little bit more pleasant in kibana 4.

There isn't a way at run time, but if you want to edit the stylesheets you can move this line out of the hover block.

What's your workflow that's causing full page reloads? Is open-->new dashboard causing it?

Hey,

thanks a lot, for the section in the css, so i will tune it for me a little bit.

I loaded the new metricbeat Dashboards. Every time i click on a link on this dashboard (changinge from one dashboard to an other i get a full page reload.

Switching between Discover,Visualisation and Dashboard works without reload.

Eventually the link generation is a little bit bugged.

The navigation links are:
http://kibana/app/kibana#/dashboard
http://kibana/app/kibana#/visualize

The Dashboard links are like:
http://kibana/#/dashboard/Metricbeat-network

So there are missing the "app/kibana" path.

Probably the problem is in the combation with my nginx proxy, where i doesn't make any changes during the upgrade.

location / {
	proxy_set_header Host $host;
		proxy_set_header X-Real-IP $remote_addr;
	proxy_pass http://localhost:5601;
	proxy_http_version 1.1;
       	proxy_set_header Upgrade $http_upgrade;
    	proxy_set_header Connection 'upgrade';

}

I made an attempt at fixing the full page refreshes here. In the short term, if you edit that visualization and remove the starting /, it should resolve the issue.