SOLR-4289: Admin UI - JVM memory bar - dark grey "used" width is too small

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1431073 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Matheis 2013-01-09 21:02:37 +00:00
parent a5dac534fc
commit 44597fa290
2 changed files with 6 additions and 2 deletions

View File

@ -1691,6 +1691,8 @@ Bug Fixes
* SOLR-1958: When using the MailEntityProcessor, import would fail if
fetchMailsSince was not specified. (Max Lynch via James Dyer)
* SOLR-4289: Admin UI - JVM memory bar - dark grey "used" width is too small
(steffkes)
Other Changes
----------------------

View File

@ -36,13 +36,15 @@ var generate_bar = function( bar_container, bar_data, convert_label_values )
$( '.bar-max.val', bar_holder ).text( bar_data['max'] );
bar_level++;
$( '.bar-total.bar', bar_holder ).width( new String( (bar_data['total']/bar_data['max'])*100 ) + '%' );
var total_calc = bar_data['total']/bar_data['max'];
$( '.bar-total.bar', bar_holder ).width( new String( total_calc*100 ) + '%' );
$( '.bar-total.val', bar_holder ).text( bar_data['total'] );
if( bar_data['used'] )
{
bar_level++;
$( '.bar-used.bar', bar_holder ).width( new String( (bar_data['used']/bar_data['max'])*100 ) + '%' );
var used_calc = (bar_data['used']/bar_data['max'])/total_calc;
$( '.bar-used.bar', bar_holder ).width( new String( used_calc*100 ) + '%' );
$( '.bar-used.val', bar_holder ).text( bar_data['used'] );
}