0

有没有人有将rrd数据导入python的好方法?到目前为止,我发现的唯一库只是命令行的包装器或提供将数据导入 rrd 并绘制它的功能。

我知道 rrd 的导出和转储选项,但我想知道是否有人已经在这里完成了繁重的工作。

4

1 回答 1

1

这是我为获取 cacti rrd 数据而编写的脚本的摘录。它不太可能正是您想要的,但它可能会给您一个良好的开端。我的脚本的目的是将 Cacti 变成一个数据仓库,所以我倾向于提取大量的平均值、最大值或最小值数据。我还有一些用于抛出上限或下限尖峰的标志,以防我想将“字节/秒”变成更有用的东西,比如“mb/hour”......

如果您想要精确的一对一数据复制,您可能需要稍微调整一下。

    value_dict = {}
    for file in files:
        if file[0] == '':
            continue
        file = file[0]
        value_dict[file] = {}
        starttime = 0
        endtime = 0
        cmd = '%s fetch %s %s -s %s -e %s 2>&1' % (options.rrdtool, file, options.cf, options.start, options.end)
        if options.verbose: print cmd
        output = os.popen(cmd).readlines()
        dsources = output[0].split()
        if dsources[0].startswith('ERROR'):
            if options.verbose:
                print output[0]
            continue
        if not options.source:
            source = 0
        else:
            try:
                source = dsources.index(options.source)
            except:
                print "Invalid data source, options are: %s" % (dsources)
                sys.exit(0)

        data = output[3:]
        for val in data:
            val = val.split()
            time = int(val[0][:-1])
            val = float(val[source+1])
            # make sure it's not invalid numerical data, and also an actual number
            ok = 1
            if options.lowerrange:
                if val < options.lowerrange: ok = 0
            if options.upperrange:
                if val > options.upperrange: ok = 0
            if ((options.toss and val != options.toss and val == val) or val == val) and ok:
                if starttime == 0:
                    # this should be accurate for up to six months in the past
                    if options.start < -87000:
                        starttime = time - 1800
                    else:
                        starttime = time - 300
                else:
                    starttime = endtime
                endtime = time
                filehash[file] = 1
                val = val * options.multiply 
                values.append(val)
                value_dict[file][time] = val
                seconds = seconds + (endtime - starttime)
于 2011-02-08T21:21:42.247 回答