blob: 89a4158aac5ba81baa0486e7b6f2de1e35264dc7 [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>
<div class="profile-trace-dashboard flex-v">
<div class="profile-trace-detail-wrapper mb-5 blue sm">
<select class="profile-trace-detail-ids">
<option v-for="i in currentSegment.traceIds" :value="i" :key="i">{{ i }}</option>
</select>
<select class="profile-trace-detail-ids" @change="spanModeChange($event)">
<option value="include" key="include">{{ $t('includeChildren') }}</option>
<option value="exclude" key="exclude">{{ $t('excludeChildren') }}</option>
</select>
<a class="profile-analyze-btn bg-blue profile-trace-detail-ids" @click="analyzeProfile()">
<span class="vm">{{ $t('analyze') }}</span>
</a>
</div>
<TraceDetailChartTable
:data="segmentSpans"
:traceId="currentSegment.traceIds[0]"
:showBtnDetail="true"
:HeaderType="'profile'"
@selectSpan="selectSpan"
/>
<div>
<ProfileDetailChartTable :data="profileAnalyzation" :highlightTop="highlightTop" v-if="!loading" />
<div class="rk-trace-t-loading" v-show="loading">
<svg class="icon loading">
<use xlink:href="#spinner"></use>
</svg>
</div>
<div v-if="message">{{ message }}</div>
</div>
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import { Action, Mutation } from 'vuex-class';
import { TraceDetailChartTable } from '../common';
import ProfileDetailChartTable from './profile-detail-chart-table.vue';
@Component({
components: { TraceDetailChartTable, ProfileDetailChartTable },
})
export default class ProfileTraceDetail extends Vue {
@Prop() private segmentSpans: any;
@Prop() private currentSegment: any;
@Prop() private profileAnalyzation: any;
@Prop() private highlightTop!: boolean;
@Prop() private currentSpan!: any;
@Action('profileStore/GET_PROFILE_ANALYZE') private GET_PROFILE_ANALYZE: any;
@Mutation('profileStore/SET_CURRENT_SPAN') private SET_CURRENT_SPAN: any;
private timeRange: Array<{ start: number; end: number }> = [];
private mode: string = 'include';
private message: string = '';
private loading: boolean = false;
private selectSpan(data: any) {
this.SET_CURRENT_SPAN(data);
}
private spanModeChange(item: any) {
this.mode = item.target.value;
this.updateTimeRange();
}
private updateTimeRange() {
if (this.mode === 'include') {
this.timeRange = [
{
start: this.currentSpan.startTime,
end: this.currentSpan.endTime,
},
];
} else {
const { children, startTime, endTime } = this.currentSpan;
let timeRange = [];
if (!children || !children.length) {
this.timeRange = [
{
start: this.currentSpan.startTime,
end: this.currentSpan.endTime,
},
];
return;
}
for (const item of children) {
timeRange.push(
{
start: startTime,
end: item.startTime,
},
{
start: item.endTime,
end: endTime,
},
);
}
timeRange = timeRange.reduce((prev: any[], cur) => {
let isUpdate = false;
for (const item of prev) {
if (cur.start <= item.end && item.start <= cur.start) {
isUpdate = true;
item.start = item.start < cur.start ? cur.start : item.start;
item.end = item.end < cur.end ? item.end : cur.end;
}
}
if (!isUpdate) {
prev.push(cur);
}
return prev;
}, []);
this.timeRange = timeRange.filter((item: any) => item.start !== item.end);
}
}
private analyzeProfile() {
this.loading = true;
this.updateTimeRange();
this.GET_PROFILE_ANALYZE({
segmentId: this.currentSegment.segmentId,
timeRanges: this.timeRange,
})
.then((result: { tip: string }) => {
if (!result) {
return;
}
this.message = result.tip;
})
.finally(() => {
this.loading = false;
});
}
}
</script>
<style lang="scss" scoped>
.profile-trace-dashboard {
padding: 20px;
width: 68%;
min-width: 350px;
min-height: 150px;
flex-shrink: 0;
height: 100%;
overflow: auto;
}
.profile-trace-detail-wrapper {
padding: 8px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.profile-trace-detail-ids {
background-color: rgba(0, 0, 0, 0);
outline: 0;
border-style: unset;
color: inherit;
border: 1px solid;
border-radius: 4px;
margin-right: 10px;
}
select {
margin: 0 10px;
}
.profile-analyze-btn {
color: #fff;
padding: 3px 9px;
background-color: #484b55;
&.bg-blue {
background-color: #448dfe;
}
}
</style>