npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

virtual-chart-vue3

v1.0.8

Published

用于 vue3 虚拟`echarts`图表支持横向和竖向,目前不支持换行

Downloads

19

Readme

virtual-chart-list

用于 vue3 虚拟echarts图表支持横向和竖向,目前不支持换行

图表目前使用的是echarts

支持二次开发

需要传入的参数

| 选项 | 描述 | 默认 | 必填 | | ------------------ | ----------------------------------------------- | ------------ | -------- | | chartData | 图表数据 | | | | itemSizeWidth | 图的宽度 | 400 | | | itemSizeHeight | 图的高度 | 400 | | | bufferSize | 缓冲数据也就是 end = start + bufferSize | 10 | | | horizontald | 方向 | vertical | |

使用方法

1、下载

npm i virtual-chart-vue3

如果版本有问题就 npm i virtual-chart-vue3 --legacy-peer-deps

2、引入

import vueVirtualChart from "virtual-chart-vue3";
const app = createApp(App);
vueVirtualChart(app);

3、使用

  <div class="wrapper">
    <vueVirtualChart  :chartData="chartData"></vueVirtualChart>
  </div>

注意:

wrapper父亲要给宽高

chartData 示例:

[
    {
        "id": "mysqlio_test.mybenchx0",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx0"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:25",
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx1",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx1"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:25",
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980,
                        9980
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx2",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx2"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:25",
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        2000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        3303,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx3",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx3"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx4",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx4"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828,
                        9828
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx5",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx5"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx6",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx6"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx7",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx7"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:35",
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        2000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        3271,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx8",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx8"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx9",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx9"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx10",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx10"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945,
                        9945
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx11",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx11"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx12",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx12"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:45",
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        2000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        3272,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx13",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx13"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx14",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx14"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678,
                        9678
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                },
                {
                    "name": "mydump_extract_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000
                    ]
                }
            ]
        }
    },
    {
        "id": "mysqlio_test.mybenchx15",
        "options": {
            "title": {
                "text": "mysqlio_test.mybenchx15"
            },
            "tooltip": {
                "trigger": "axis"
            },
            "legend": {
                "top": "10%",
                "data": [
                    "mydump_count",
                    "mydump_load_count",
                    "mydump_extract_count"
                ]
            },
            "grid": {
                "top": "25%",
                "left": "3%",
                "right": "4%",
                "bottom": "4%",
                "containLabel": true
            },
            "xAxis": {
                "type": "category",
                "boundaryGap": false,
                "data": [
                    "2023-12-28 11:07:55",
                    "2023-12-28 11:08:05",
                    "2023-12-28 11:08:15",
                    "2023-12-28 11:08:25",
                    "2023-12-28 11:08:35",
                    "2023-12-28 11:08:45",
                    "2023-12-28 11:08:55",
                    "2023-12-28 11:09:05",
                    "2023-12-28 11:09:15",
                    "2023-12-28 11:09:25",
                    "2023-12-28 11:09:35",
                    "2023-12-28 11:09:45",
                    "2023-12-28 11:09:55",
                    "2023-12-28 11:10:05",
                    "2023-12-28 11:10:15",
                    "2023-12-28 11:10:25",
                    "2023-12-28 11:10:35",
                    "2023-12-28 11:10:45"
                ]
            },
            "yAxis": {
                "type": "value"
            },
            "series": [
                {
                    "name": "mydump_count",
                    "type": "line",
                    "data": [
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905,
                        9905
                    ]
                },
                {
                    "name": "mydump_load_count",
                    "type": "line",
                    "data": [
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,
                        10000,