mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-12 15:52:57 +00:00
fix: update
This commit is contained in:
parent
cf255b2a75
commit
b18f206622
246
src/views/dashboard/related/topology/pod/InstanceMap.vue
Normal file
246
src/views/dashboard/related/topology/pod/InstanceMap.vue
Normal file
@ -0,0 +1,246 @@
|
|||||||
|
<!-- 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="hierarchy-services-topo"
|
||||||
|
v-loading="loading"
|
||||||
|
element-loading-background="rgba(0, 0, 0, 0)"
|
||||||
|
:style="`height: ${height}px`"
|
||||||
|
>
|
||||||
|
<Graph
|
||||||
|
:config="config"
|
||||||
|
:nodes="topologyStore.hierarchyServiceNodes"
|
||||||
|
:calls="topologyStore.hierarchyServiceCalls"
|
||||||
|
:entity="EntityType[0].value"
|
||||||
|
@showNodeTip="showNodeTip"
|
||||||
|
@handleNodeClick="handleNodeClick"
|
||||||
|
@hideTip="hideTip"
|
||||||
|
/>
|
||||||
|
<div id="popover"></div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { PropType } from "vue";
|
||||||
|
import { ref, onMounted, nextTick } from "vue";
|
||||||
|
import * as d3 from "d3";
|
||||||
|
import type { Node } from "@/types/topology";
|
||||||
|
import { useTopologyStore } from "@/store/modules/topology";
|
||||||
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
||||||
|
import { EntityType, ConfigFieldTypes } from "@/views/dashboard/data";
|
||||||
|
import router from "@/router";
|
||||||
|
import { ElMessage } from "element-plus";
|
||||||
|
import type { MetricConfigOpt } from "@/types/dashboard";
|
||||||
|
import { aggregation } from "@/hooks/useMetricsProcessor";
|
||||||
|
import getDashboard from "@/hooks/useDashboardsSession";
|
||||||
|
import Graph from "../components/Graph.vue";
|
||||||
|
|
||||||
|
/*global Nullable, defineProps */
|
||||||
|
defineProps({
|
||||||
|
config: {
|
||||||
|
type: Object as PropType<any>,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const topologyStore = useTopologyStore();
|
||||||
|
const dashboardStore = useDashboardStore();
|
||||||
|
const height = ref<number>(100);
|
||||||
|
const loading = ref<boolean>(false);
|
||||||
|
const popover = ref<Nullable<any>>(null);
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await nextTick();
|
||||||
|
init();
|
||||||
|
});
|
||||||
|
|
||||||
|
getTopology();
|
||||||
|
|
||||||
|
async function init() {
|
||||||
|
const dom = document.querySelector(".hierarchy-related")?.getBoundingClientRect() || {
|
||||||
|
height: 80,
|
||||||
|
width: 0,
|
||||||
|
};
|
||||||
|
height.value = dom.height - 80;
|
||||||
|
popover.value = d3.select("#popover");
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getTopology() {
|
||||||
|
loading.value = true;
|
||||||
|
const resp = await topologyStore.getHierarchyServiceTopology();
|
||||||
|
loading.value = false;
|
||||||
|
|
||||||
|
if (resp && resp.errors) {
|
||||||
|
ElMessage.error(resp.errors);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function showNodeTip(event: MouseEvent, data: Node) {
|
||||||
|
if (!data) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!popover.value) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const dashboard =
|
||||||
|
getDashboard(
|
||||||
|
{
|
||||||
|
layer: data.layer || "",
|
||||||
|
entity: EntityType[0].value,
|
||||||
|
},
|
||||||
|
ConfigFieldTypes.ISDEFAULT,
|
||||||
|
).dashboard || {};
|
||||||
|
const exprssions = dashboard.expressions || [];
|
||||||
|
const nodeMetricConfig = dashboard.expressionsConfig || [];
|
||||||
|
const html = exprssions.map((m: string, index: number) => {
|
||||||
|
const metric =
|
||||||
|
topologyStore.hierarchyNodeMetrics[data.layer || ""][m].values.find(
|
||||||
|
(val: { id: string; value: unknown }) => val.id === data.id,
|
||||||
|
) || {};
|
||||||
|
const opt: MetricConfigOpt = nodeMetricConfig[index] || {};
|
||||||
|
const v = aggregation(metric.value, opt);
|
||||||
|
return ` <div class="mb-5"><span class="grey">${opt.label || m}: </span>${v} ${opt.unit || ""}</div>`;
|
||||||
|
});
|
||||||
|
const tipHtml = [
|
||||||
|
`<div class="mb-5"><span class="grey">name: </span>${data.name}</div><div class="mb-5"><span class="grey">layer: </span>${data.layer}</div>`,
|
||||||
|
...html,
|
||||||
|
].join(" ");
|
||||||
|
|
||||||
|
popover.value
|
||||||
|
.style("top", event.offsetY + 10 + "px")
|
||||||
|
.style("left", event.offsetX + 10 + "px")
|
||||||
|
.style("visibility", "visible")
|
||||||
|
.html(tipHtml);
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideTip() {
|
||||||
|
popover.value.style("visibility", "hidden");
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleNodeClick(event: MouseEvent, d: Node & { x: number; y: number }) {
|
||||||
|
const origin = dashboardStore.entity;
|
||||||
|
event.stopPropagation();
|
||||||
|
hideTip();
|
||||||
|
const dashboard =
|
||||||
|
getDashboard(
|
||||||
|
{
|
||||||
|
layer: d.layer || "",
|
||||||
|
entity: EntityType[0].value,
|
||||||
|
},
|
||||||
|
ConfigFieldTypes.ISDEFAULT,
|
||||||
|
).dashboard || {};
|
||||||
|
const name = dashboard.name;
|
||||||
|
const path = `/dashboard/${dashboardStore.layerId}/${EntityType[0].value}/${topologyStore.node.id}/${name}`;
|
||||||
|
const routeUrl = router.resolve({ path });
|
||||||
|
|
||||||
|
window.open(routeUrl.href, "_blank");
|
||||||
|
dashboardStore.setEntity(origin);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.hierarchy-services-topo {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.relation-btn {
|
||||||
|
position: absolute;
|
||||||
|
cursor: pointer;
|
||||||
|
top: 50px;
|
||||||
|
left: 700px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: var(--sw-topology-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.node-text {
|
||||||
|
fill: var(--sw-topology-color);
|
||||||
|
font-size: 12px;
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hierarchy-services-svg {
|
||||||
|
cursor: move;
|
||||||
|
background-color: var(--el-bg-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
color: var(--sw-topology-color);
|
||||||
|
font-size: 12px;
|
||||||
|
|
||||||
|
div {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 32px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
display: inline-block;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hierarchy-settings {
|
||||||
|
position: absolute;
|
||||||
|
top: 40px;
|
||||||
|
right: 10px;
|
||||||
|
width: 280px;
|
||||||
|
height: 420px;
|
||||||
|
overflow: auto;
|
||||||
|
padding: 0 15px;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $disabled-color;
|
||||||
|
border: 1px solid $border-color-primary;
|
||||||
|
background-color: var(--sw-topology-setting-bg);
|
||||||
|
box-shadow: var(--sw-topology-box-shadow);
|
||||||
|
transition: all 0.5ms linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
color: var(--sw-topology-color);
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topo-line {
|
||||||
|
stroke-linecap: round;
|
||||||
|
stroke-width: 1px;
|
||||||
|
stroke-dasharray: 10 10;
|
||||||
|
fill: none;
|
||||||
|
animation: var(--sw-topo-animation);
|
||||||
|
}
|
||||||
|
|
||||||
|
.topo-line-anchor,
|
||||||
|
.topo-node {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-loading-spinner {
|
||||||
|
top: 30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#popover {
|
||||||
|
position: absolute;
|
||||||
|
visibility: hidden;
|
||||||
|
padding: 5px;
|
||||||
|
border: var(--sw-topology-border);
|
||||||
|
border-radius: 3px;
|
||||||
|
background-color: $theme-background;
|
||||||
|
}
|
||||||
|
</style>
|
@ -33,7 +33,7 @@ limitations under the License. -->
|
|||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { PropType } from "vue";
|
import type { PropType } from "vue";
|
||||||
import { ref, onMounted, watch, nextTick } from "vue";
|
import { ref, onMounted, nextTick } from "vue";
|
||||||
import * as d3 from "d3";
|
import * as d3 from "d3";
|
||||||
import type { Node } from "@/types/topology";
|
import type { Node } from "@/types/topology";
|
||||||
import { useTopologyStore } from "@/store/modules/topology";
|
import { useTopologyStore } from "@/store/modules/topology";
|
||||||
@ -41,11 +41,10 @@ limitations under the License. -->
|
|||||||
import { EntityType, ConfigFieldTypes } from "@/views/dashboard/data";
|
import { EntityType, ConfigFieldTypes } from "@/views/dashboard/data";
|
||||||
import router from "@/router";
|
import router from "@/router";
|
||||||
import { ElMessage } from "element-plus";
|
import { ElMessage } from "element-plus";
|
||||||
import { useAppStoreWithOut } from "@/store/modules/app";
|
|
||||||
import type { MetricConfigOpt } from "@/types/dashboard";
|
import type { MetricConfigOpt } from "@/types/dashboard";
|
||||||
import { aggregation } from "@/hooks/useMetricsProcessor";
|
import { aggregation } from "@/hooks/useMetricsProcessor";
|
||||||
import getDashboard from "@/hooks/useDashboardsSession";
|
import getDashboard from "@/hooks/useDashboardsSession";
|
||||||
import Graph from "./Graph.vue";
|
import Graph from "../components/Graph.vue";
|
||||||
|
|
||||||
/*global Nullable, defineProps */
|
/*global Nullable, defineProps */
|
||||||
defineProps({
|
defineProps({
|
||||||
@ -56,7 +55,6 @@ limitations under the License. -->
|
|||||||
});
|
});
|
||||||
const topologyStore = useTopologyStore();
|
const topologyStore = useTopologyStore();
|
||||||
const dashboardStore = useDashboardStore();
|
const dashboardStore = useDashboardStore();
|
||||||
const appStore = useAppStoreWithOut();
|
|
||||||
const height = ref<number>(100);
|
const height = ref<number>(100);
|
||||||
const loading = ref<boolean>(false);
|
const loading = ref<boolean>(false);
|
||||||
const popover = ref<Nullable<any>>(null);
|
const popover = ref<Nullable<any>>(null);
|
||||||
|
@ -157,7 +157,7 @@ limitations under the License. -->
|
|||||||
import { aggregation } from "@/hooks/useMetricsProcessor";
|
import { aggregation } from "@/hooks/useMetricsProcessor";
|
||||||
import icons from "@/assets/img/icons";
|
import icons from "@/assets/img/icons";
|
||||||
import { useQueryTopologyMetrics } from "@/hooks/useMetricsProcessor";
|
import { useQueryTopologyMetrics } from "@/hooks/useMetricsProcessor";
|
||||||
import { layout, computeLevels, changeNode } from "./utils/layout";
|
import { layout, computeLevels, changeNode } from "../components/utils/layout";
|
||||||
import zoom from "@/views/dashboard/related/components/utils/zoom";
|
import zoom from "@/views/dashboard/related/components/utils/zoom";
|
||||||
import { useQueryTopologyExpressionsProcessor } from "@/hooks/useExpressionsProcessor";
|
import { useQueryTopologyExpressionsProcessor } from "@/hooks/useExpressionsProcessor";
|
||||||
/*global Nullable, defineProps */
|
/*global Nullable, defineProps */
|
||||||
|
Loading…
Reference in New Issue
Block a user