blob: b460577fa3d37b5ad32e0ae1ff0812bb5caa903d [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
<template>
<rk-panel :title="title">
<RkEcharts height="215px" :option="responseConfig"/>
</rk-panel>
</template>
<script lang="ts">
import Vue from 'vue';
import { Component, Prop } from 'vue-property-decorator';
@Component
export default class ChartHeap extends Vue {
@Prop() private title!: string;
@Prop() private stateDashboard!: any;
@Prop() private intervalTime!: any;
get responseConfig() {
return {
color: [
'#3f96e3',
'#3fbde3',
],
tooltip: {
trigger: 'axis',
backgroundColor: 'rgb(50,50,50)',
textStyle: {
fontSize: 13,
},
},
legend: {
icon: 'circle',
top: 0,
left: 0,
itemWidth: 12,
},
grid: {
top: 10,
left: 0,
right: 10,
bottom: 5,
containLabel: true,
},
xAxis: {
type: 'category',
axisTick: {
lineStyle: { color: '#c1c5ca41' },
alignWithLabel: true,
},
splitLine: { show: false },
axisLine: { lineStyle: { color: 'rgba(0,0,0,0)' } },
axisLabel: { color: '#9da5b2', fontSize: '11' },
},
yAxis: {
type: 'value',
axisLine: { show: false },
axisTick: { show: false },
splitLine: { lineStyle: { color: '#c1c5ca41', type: 'dashed' } },
axisLabel: { color: '#9da5b2', fontSize: '11' },
},
series: [
{
data: this.stateDashboard.instanceInfo.heap.map((i: any, index: number) => [
this.intervalTime[index],
(i.value / 1048576).toFixed(2),
]),
name: this.stateDashboard.instanceInfo.heap.length ? 'Value' : null,
type: 'line',
symbol: 'none',
areaStyle: {},
lineStyle: {
width: 1.5,
},
},
{
data: this.stateDashboard.instanceInfo.heap.map((i: any, index: number) => [
this.intervalTime[index],
((this.stateDashboard.instanceInfo.maxHeap[index].value - i.value) / 1048576).toFixed(2),
]),
name: this.stateDashboard.instanceInfo.heap.length ? 'Free' : null,
type: 'line',
symbol: 'none',
areaStyle: {},
lineStyle: {
width: 1.5,
},
},
],
};
}
}
</script>