mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
24 lines
628 B
JavaScript
24 lines
628 B
JavaScript
const vlSpec = {
|
|
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
|
"description": "flamegraph",
|
|
"data": {
|
|
"url": "/diagnostics/spans.json"
|
|
},
|
|
"width": "container",
|
|
"height": "container",
|
|
"config": {
|
|
"legend": {
|
|
"orient": "bottom",
|
|
}
|
|
},
|
|
"encoding": {
|
|
"y": { "field": "LogLine", "type": "nominal", "axis": null },
|
|
"x": { "field": "StartTime", "type": "temporal" },
|
|
"x2": { "field": "EndTime", "type": "temporal" },
|
|
"color": { "field": "RequestId", "type": "nominal" },
|
|
},
|
|
"mark": { "type": "bar", "tooltip": {"content": "data"} },
|
|
};
|
|
|
|
vegaEmbed('#vis', vlSpec);
|