mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 17:05:10 +00:00
update content
This commit is contained in:
parent
27e89cad86
commit
9c09dfd565
@ -137,6 +137,7 @@ limitations under the License. -->
|
|||||||
type="primary"
|
type="primary"
|
||||||
@click="searchLogs"
|
@click="searchLogs"
|
||||||
>
|
>
|
||||||
|
<Icon size="sm" iconName="retry" class="reload" />
|
||||||
{{ t("search") }}
|
{{ t("search") }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -88,11 +88,12 @@ function drawGraph() {
|
|||||||
.attr("class", "d3-tip")
|
.attr("class", "d3-tip")
|
||||||
.direction("w")
|
.direction("w")
|
||||||
.html((d: { data: StackElement }) => {
|
.html((d: { data: StackElement }) => {
|
||||||
|
const name = d.data.name.replace("<", "<").replace(">", ">");
|
||||||
const valStr =
|
const valStr =
|
||||||
ebpfStore.aggregateType === AggregateTypes[0].value
|
ebpfStore.aggregateType === AggregateTypes[0].value
|
||||||
? `<div class="mb-5">Dump Count: ${d.data.dumpCount}</div>`
|
? `<div class="mb-5">Dump Count: ${d.data.dumpCount}</div>`
|
||||||
: `<div class="mb-5">Duration: ${d.data.dumpCount} ns</div>`;
|
: `<div class="mb-5">Duration: ${d.data.dumpCount} ns</div>`;
|
||||||
return `<div class="mb-5 name">Symbol: ${d.data.name}</div>${valStr}`;
|
return `<div class="mb-5 name">Symbol: ${name}</div>${valStr}`;
|
||||||
})
|
})
|
||||||
.style("max-width", "500px");
|
.style("max-width", "500px");
|
||||||
flameChart.value.tooltip(tip);
|
flameChart.value.tooltip(tip);
|
||||||
|
Loading…
Reference in New Issue
Block a user