mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-01 16:03:00 +00:00
119 lines
2.9 KiB
Vue
119 lines
2.9 KiB
Vue
<!-- 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 @click="showSelectSpan" class="log-item">
|
|
<div v-for="(item, index) in columns" :key="index" :class="item.label">
|
|
<span v-if="item.label === 'timestamp'">
|
|
{{ dateFormat(data.timestamp) }}
|
|
</span>
|
|
<span v-else-if="item.label === 'tags'">
|
|
{{ tags }}
|
|
</span>
|
|
<router-link
|
|
v-else-if="item.label === 'traceId' && !noLink"
|
|
:to="{ name: 'trace', query: { traceid: data[item.label] } }"
|
|
>
|
|
<span :class="noLink ? '' : 'blue'">{{ data[item.label] }}</span>
|
|
</router-link>
|
|
<span v-else>{{ data[item.label] }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import dayjs from "dayjs";
|
|
import { ServiceLogConstants } from "./data";
|
|
/*global defineProps, defineEmits */
|
|
const props = defineProps({
|
|
data: { type: Object as any, default: () => ({}) },
|
|
noLink: { type: Boolean, default: true },
|
|
});
|
|
const emit = defineEmits(["select"]);
|
|
const columns = ServiceLogConstants;
|
|
const tags = computed(() => {
|
|
if (!props.data.tags) {
|
|
return "";
|
|
}
|
|
return String(props.data.tags.map((d: any) => `${d.key}=${d.value}`));
|
|
});
|
|
const dateFormat = (date: number, pattern = "YYYY-MM-DD HH:mm:ss") =>
|
|
dayjs(date).format(pattern);
|
|
function showSelectSpan() {
|
|
emit("select", props.data);
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.log-item {
|
|
white-space: nowrap;
|
|
position: relative;
|
|
cursor: pointer;
|
|
|
|
.traceId {
|
|
width: 390px;
|
|
cursor: pointer;
|
|
|
|
span {
|
|
display: inline-block;
|
|
width: 100%;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.blue {
|
|
color: #448dfe;
|
|
}
|
|
}
|
|
|
|
.content,
|
|
.tags {
|
|
width: 300px;
|
|
}
|
|
|
|
.serviceInstanceName,
|
|
.serviceName {
|
|
width: 200px;
|
|
}
|
|
}
|
|
|
|
.log-item:hover {
|
|
background: rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.log-item > div {
|
|
width: 140px;
|
|
padding: 0 5px;
|
|
display: inline-block;
|
|
border: 1px solid transparent;
|
|
border-right: 1px dotted silver;
|
|
overflow: hidden;
|
|
line-height: 30px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.log-item .text {
|
|
width: 100%;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.log-item > div.method {
|
|
height: 100%;
|
|
padding: 3px 8px;
|
|
}
|
|
</style>
|