Skip to content

Commit

Permalink
fix heap value
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-vlcek committed Jul 31, 2011
1 parent f9bb97f commit efe3772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/bigdesk.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
chCacheSize.series[0].data[0].update(indices.cache.field_size_in_bytes);
chCacheSize.series[0].data[1].update(indices.cache.filter_size_in_bytes);

chCacheSize.series[1].data[0].update((jvm.mem ? jvm.mem.non_heap_committed_in_bytes : null));
chCacheSize.series[1].data[0].update((jvm.mem ? jvm.mem.heap_committed_in_bytes : null));
chCacheSize.series[1].data[1].update(indices.cache.field_size_in_bytes);
chCacheSize.series[1].data[2].update(indices.cache.filter_size_in_bytes);
}
Expand Down

0 comments on commit efe3772

Please sign in to comment.