blob: 0c32f9aa6fafaf2cd9af79ebd9388b3bd0ae5d35 [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-task-list flex-v">
<div class="profile-task-wrapper flex-v">
<div class="rk-profile-t-tool flex-h">
Task List
</div>
<div class="rk-trace-t-wrapper">
<div class="rk-no-data" v-show="!taskListSource.length">No Data</div>
<table class="rk-trace-t">
<tr class="rk-trace-tr cp" v-for="(i, index) in taskListSource" @click="selectTask(i)" :key="index">
<td
class="rk-trace-td"
:class="{
selected: selectedTask.id === i.id,
}"
>
<div class="ell mb-5">
<span class="b">{{ i.endpointName }}</span>
<a class="profile-btn r" @click="viewTask($event, i)" v-tooltip:bottom="{ content: $t('taskView') }">
<rk-icon icon="library_books" />
</a>
</div>
<div class="grey ell sm">
<span class="mr-10 sm">{{ i.startTime | dateformat }}</span>
<span class="mr-10 sm">{{ (i.startTime + i.duration * 60 * 1000) | dateformat }}</span>
</div>
</td>
</tr>
</table>
</div>
<rk-sidebox :width="'50%'" :show.sync="viewDetail" :title="$t('taskInfo')">
<div class="rk-trace-detail">
<h5 class="mb-10">{{ $t('task') }}.</h5>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('service') }}:</span>
<span class="g-sm-8 wba">{{ selectedTaskService.label }}</span>
</div>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('endpoint') }}:</span>
<span class="g-sm-8 wba">{{ selectedTask.endpointName }}</span>
</div>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('monitorTime') }}:</span
><span class="g-sm-8 wba">{{ selectedTask.startTime | dateformat }}</span>
</div>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('monitorDuration') }}:</span
><span class="g-sm-8 wba">{{ selectedTask.duration }} min</span>
</div>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('minThreshold') }}:</span>
<span class="g-sm-8 wba">{{ selectedTask.minDurationThreshold }} ms</span>
</div>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('dumpPeriod') }}:</span>
<span class="g-sm-8 wba">{{ selectedTask.dumpPeriod }}</span>
</div>
<div class="mb-10 clear">
<span class="g-sm-4 grey">{{ $t('maxSamplingCount') }}:</span>
<span class="g-sm-8 wba">{{ selectedTask.maxSamplingCount }}</span>
</div>
<h5 class="mb-10" v-show="selectedTask.logs && selectedTask.logs.length">{{ $t('logs') }}.</h5>
<div class="log-item" v-for="(i, index) in Object.keys(instanceLogs)" :key="index">
<div class="mb-10 sm">
<span class="mr-10 grey">{{ $t('instance') }}:</span>
<span>{{ i }}</span>
</div>
<div v-for="(d, index) in instanceLogs[i]" :key="index">
<span class="mr-10 grey">{{ $t('operationType') }}:</span>
<span class="mr-20">{{ d.operationType }}</span>
<span class="mr-10 grey">{{ $t('time') }}:</span>
<span>{{ d.operationTime | dateformat }}</span>
</div>
</div>
</div>
</rk-sidebox>
</div>
<div class="profile-trace-wrapper profile-segment flex-v">
<div class="rk-profile-t-tool flex-h">
Sampled Traces
</div>
<div class="rk-trace-t-wrapper">
<div class="rk-no-data" v-show="!segmentList.length">No Data</div>
<table class="rk-trace-t">
<tr class="rk-trace-tr cp" v-for="(i, index) in segmentList" @click="selectTrace(i)" :key="index">
<td
class="rk-trace-td"
:class="{
selected: selectedKey == i.segmentId,
}"
>
<div
class="ell mb-5"
:class="{
blue: !i.isError,
red: i.isError,
}"
>
<span class="b">{{ i.endpointNames[0] }}</span>
</div>
<div class="grey ell sm">
<span class="rk-tag mr-10 sm">{{ i.duration }} ms</span>{{ parseInt(i.start) | dateformat }}
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import { Action, Mutation } from 'vuex-class';
import { TaskLog, TaskListItem } from '@/types/profile';
@Component
export default class ProfileTaskList extends Vue {
@Prop() private taskListSource: any;
@Prop() private segmentList: any;
@Prop() private headerSource: any;
@Mutation('profileStore/SET_CURRENT_SEGMENT') private SET_CURRENT_SEGMENT: any;
@Action('profileStore/GET_SEGMENT_LIST') private GET_SEGMENT_LIST: any;
@Action('profileStore/GET_SEGMENT_SPANS') private GET_SEGMENT_SPANS: any;
@Action('profileStore/GET_TASK_LOGS') private GET_TASK_LOGS: any;
private selectedKey: string = '';
private selectedTask: TaskListItem | {} = {};
private viewDetail: boolean = false;
private selectedTaskService: any = {};
private instanceLogs: TaskLog | any = {};
private selectTask(item: { id: string; serviceId: string; logs: TaskLog[] }) {
this.selectedTask = item;
this.selectedTaskService =
this.headerSource.serviceSource.filter((service: any) => service.key === item.serviceId)[0] || {};
this.GET_SEGMENT_LIST({ taskID: item.id });
}
private viewTask(e: Event, item: { id: string; serviceId: string; logs: TaskLog[] }) {
window.event ? (window.event.cancelBubble = true) : e.stopPropagation();
this.viewDetail = true;
this.GET_TASK_LOGS({ taskID: item.id }).then((logs: TaskLog[]) => {
item.logs = logs;
this.instanceLogs = {};
for (const d of item.logs) {
if (this.instanceLogs[d.instanceName]) {
this.instanceLogs[d.instanceName].push({ operationType: d.operationType, operationTime: d.operationTime });
} else {
this.instanceLogs[d.instanceName] = [{ operationType: d.operationType, operationTime: d.operationTime }];
}
}
this.selectedTask = item;
});
}
private selectTrace(item: { segmentId: string }) {
this.SET_CURRENT_SEGMENT(item);
this.selectedKey = item.segmentId;
this.GET_SEGMENT_SPANS({ segmentId: item.segmentId });
}
}
</script>
<style lang="scss">
.profile-task-list {
width: 30%;
min-height: 150px;
min-width: 350px;
height: 100%;
overflow: auto;
.profile-task-wrapper,
.profile-trace-wrapper {
min-height: 340px;
width: 100%;
}
.rk-no-data {
text-align: center;
margin-top: 10px;
}
.rk-trace-t-wrapper {
overflow: auto;
flex-grow: 1;
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.rk-trace-t-loading {
text-align: center;
position: absolute;
width: 100%;
height: 70px;
margin-top: 40px;
line-height: 88px;
overflow: hidden;
.icon {
width: 30px;
height: 30px;
}
}
.rk-trace-t {
width: 100%;
border-spacing: 0;
table-layout: fixed;
flex-grow: 1;
position: relative;
}
.rk-trace-tr {
&:hover {
background-color: rgba(0, 0, 0, 0.04);
}
}
.rk-trace-td {
padding: 8px 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
&.selected {
background-color: #ededed;
}
}
.rk-profile-t-tool {
padding: 10px 10px;
font-weight: bold;
border-right: 1px solid rgba(0, 0, 0, 0.07);
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
background: #f3f4f9;
}
.log-item {
margin-top: 20px;
}
.profile-btn {
color: #3d444f;
padding: 1px 3px;
border-radius: 2px;
font-size: 12px;
}
}
.profile-segment {
border-top: 1px solid rgba(0, 0, 0, 0.07);
}
</style>