如何在每次引入数据元素时动态创建新的div

时间:2015-10-20 09:05:18

标签: javascript jquery d3.js pubnub c3.js

我有来自具有多个块设备的VM的数据。每个块设备都用一个折线图表示,使用c3.js创建,在数据集中读取Bytes_Read和Bytes_Written并实时绘制图表。但是,当数据集中引入了新的块设备时,我正在努力解决这个问题,而不会创建新的图表。使用JavaScript实现这一目标的最佳方法是什么。

我的数据集示例

    {
        "devices": [
            {
                "Name": "bdev0",
                "output": {
                    "IO_Operations": 0,
                    "Bytes_Read": 0,
                    "Bytes_Written": 0
                }
            },
{
                "Name": "bdev0",
                "output": {
                    "IO_Operations": 1,
                    "Bytes_Read": 2,
                    "Bytes_Written": 3
                }
            },
{
                "Name": "bdev0",
                "output": {
                    "IO_Operations": 5,
                    "Bytes_Read": 7,
                    "Bytes_Written": 8
                }
            },
            {
                "Name": "bdev1",
                "output": {
                    "IO_Operations": 10,
                    "Bytes_Read": 20,
                    "Bytes_Written": 30
                }
            }
        ]
    }

使用新设备更新数据集

    {
        "devices": [
            {
                "Name": "bdev0",
                "output": {
                    "IO_Operations": 0,
                    "Bytes_Read": 0,
                    "Bytes_Written": 0
                }
            },
{
                "Name": "bdev0",
                "output": {
                    "IO_Operations": 1,
                    "Bytes_Read": 2,
                    "Bytes_Written": 3
                }
            },
{
                "Name": "bdev0",
                "output": {
                    "IO_Operations": 5,
                    "Bytes_Read": 7,
                    "Bytes_Written": 8
                }
            },
            {
                "Name": "bdev1",
                "output": {
                    "IO_Operations": 10,
                    "Bytes_Read": 20,
                    "Bytes_Written": 30
                },
{
                "Name": "bdev2",
                "output": {
                    "IO_Operations": 40,
                    "Bytes_Read": 50,
                    "Bytes_Written": 90
                }
            }
        ]
    }

图表代码

eon.chart({
    pubnub   : pubnub,
    history  : false,
    channel  : 'orbit5_volume',
    flow     : true,
    debug: true,
    generate : {
        bindto : '#chart',
        size: {
        height: 180,
        width: 500
    },
        data   : {
            x      : 'x',
            labels : true
        },
        axis : {
            x : {
                type : 'timeseries',
                tick : {
                    format : '%H:%M:%S'
                },
                zoom: {
                   enabled: true
                }
            }
        }
    },

    transform : function(m) {
        for (var i in m.devices){
           return { columns : [
            ['x', new Date().getTime()],
            ['Bytes Written', m.devices[i].output.Bytes_Read],
            ['Bytes Read', m.devices[i].output.Bytes_Written]
            ]
          }
        }
    }
});

1 个答案:

答案 0 :(得分:7)

你的图表代码转换循环会覆盖每个数据的密钥,这就是为什么你只得到几个值。如果您使用std::cout <<变量为每条数据提供一个新密钥,它将显示在图表上。

尝试此转换功能:

i