mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-19 01:35:58 +10:00
Merge branch 'hyungil.jeong/issue-119' of hyungil.jeong/pinpoint
from pull-request 240 * refs/heads/hyungil.jeong/issue-119: [#119] fixed a bug where memory chart was not rendering in Mixed View
This commit is contained in:
@@ -75,8 +75,8 @@ pinpointApp.directive('agentChartGroup', [ 'agentChartGroupConfig', '$timeout',
|
||||
showHeapChart = function (agentStat) {
|
||||
htChartCache.Heap = true;
|
||||
var heap = { id: 'heap', title: 'Heap', span: 'span12', line: [
|
||||
{ id: 'jvmMemoryHeapUsed', key: 'Used', values: [], isFgc: false },
|
||||
{ id: 'jvmMemoryHeapMax', key: 'Max', values: [], isFgc: false },
|
||||
{ id: 'JVM_MEMORY_HEAP_USED', key: 'Used', values: [], isFgc: false },
|
||||
{ id: 'JVM_MEMORY_HEAP_MAX', key: 'Max', values: [], isFgc: false },
|
||||
{ id: 'fgc', key: 'FGC', values: [], isFgc: true }
|
||||
]};
|
||||
|
||||
@@ -90,8 +90,8 @@ pinpointApp.directive('agentChartGroup', [ 'agentChartGroupConfig', '$timeout',
|
||||
showPermGenChart = function (agentStat) {
|
||||
htChartCache.PermGen = true;
|
||||
var nonheap = { id: 'nonheap', title: 'PermGen', span: 'span12', line: [
|
||||
{ id: 'jvmMemoryNonHeapUsed', key: 'Used', values: [], isFgc: false },
|
||||
{ id: 'jvmMemoryNonHeapMax', key: 'Max', values: [], isFgc: false },
|
||||
{ id: 'JVM_MEMORY_NON_HEAP_USED', key: 'Used', values: [], isFgc: false },
|
||||
{ id: 'JVM_MEMORY_NON_HEAP_MAX', key: 'Max', values: [], isFgc: false },
|
||||
{ id: 'fgc', key: 'FGC', values: [], isFgc: true }
|
||||
]};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user