/usr/share/pyshared/pyrrd/backend/bindings.py is in python-pyrrd 0.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 | """
The following exercises the RRD class with this backend:
Create an RRD file programmatically::
>>> import tempfile
>>> from pyrrd.rrd import DataSource, RRA, RRD
>>> from pyrrd.backend import bindings
>>> rrdfile = "/tmp/tmprrdfile.rrd"
>>> dataSources = []
>>> roundRobinArchives = []
>>> dataSource = DataSource(
... dsName='speed', dsType='COUNTER', heartbeat=600)
>>> dataSources.append(dataSource)
>>> roundRobinArchives.append(RRA(cf='AVERAGE', xff=0.5, steps=1, rows=24))
>>> roundRobinArchives.append(RRA(cf='AVERAGE', xff=0.5, steps=6, rows=10))
>>> myRRD = RRD(rrdfile, ds=dataSources, rra=roundRobinArchives,
... start=920804400, backend=bindings)
>>> myRRD.create()
Let's check to see that the file exists::
>>> import os
>>> os.path.isfile(rrdfile)
True
Let's see how big it is::
>>> bytes = len(open(rrdfile).read())
>>> 800 < bytes < 1200
True
In order to save writes to disk, PyRRD buffers values and then writes the
values to the RRD file at one go::
>>> myRRD.bufferValue('920805600', '12363')
>>> myRRD.bufferValue('920805900', '12363')
>>> myRRD.bufferValue('920806200', '12373')
>>> myRRD.bufferValue('920806500', '12383')
>>> myRRD.update()
Let's add some more data::
>>> myRRD.bufferValue('920806800', '12393')
>>> myRRD.bufferValue('920807100', '12399')
>>> myRRD.bufferValue('920807400', '12405')
>>> myRRD.bufferValue('920807700', '12411')
>>> myRRD.bufferValue('920808000', '12415')
>>> myRRD.bufferValue('920808300', '12420')
>>> myRRD.bufferValue('920808600', '12422')
>>> myRRD.bufferValue('920808900', '12423')
>>> myRRD.update()
Info checks when the RRD object is in write mode::
>>> myRRD.info() # doctest:+ELLIPSIS
lastupdate = 920808900
rra = [{'rows': 24, 'database': None, 'cf': 'AVERAGE', 'cdp_prep': None, 'beta': None, 'seasonal_period': None, 'steps': 1, 'window_length': None, 'threshold': None, 'alpha': None, 'pdp_per_row': None, 'xff': 0.5, 'ds': [], 'gamma': None, 'rra_num': None}, {'rows': 10, 'database': None, 'cf': 'AVERAGE', 'cdp_prep': None, 'beta': None, 'seasonal_period': None, 'steps': 6, 'window_length': None, 'threshold': None, 'alpha': None, 'pdp_per_row': None, 'xff': 0.5, 'ds': [], 'gamma': None, 'rra_num': None}]
filename = /tmp/...
start = 920804400
step = 300
values = []
ds = [{'name': 'speed', 'min': 'U', 'max': 'U', 'unknown_sec': None, 'minimal_heartbeat': 600, 'value': None, 'rpn': None, 'type': 'COUNTER', 'last_ds': None}]
ds[speed].name = speed
ds[speed].min = U
ds[speed].max = U
ds[speed].minimal_heartbeat = 600
ds[speed].type = COUNTER
rra[0].rows = 24
rra[0].cf = AVERAGE
rra[0].steps = 1
rra[0].xff = 0.5
rra[0].ds = []
rra[1].rows = 10
rra[1].cf = AVERAGE
rra[1].steps = 6
rra[1].xff = 0.5
rra[1].ds = []
In order to create a graph, we'll need some data definitions. We'll also
throw in some calculated definitions and variable definitions for good
meansure::
>>> from pyrrd.graph import DEF, CDEF, VDEF, LINE, AREA, GPRINT
>>> def1 = DEF(rrdfile=myRRD.filename, vname='myspeed',
... dsName=dataSource.name)
>>> cdef1 = CDEF(vname='kmh', rpn='%s,3600,*' % def1.vname)
>>> cdef2 = CDEF(vname='fast', rpn='kmh,100,GT,kmh,0,IF')
>>> cdef3 = CDEF(vname='good', rpn='kmh,100,GT,0,kmh,IF')
>>> vdef1 = VDEF(vname='mymax', rpn='%s,MAXIMUM' % def1.vname)
>>> vdef2 = VDEF(vname='myavg', rpn='%s,AVERAGE' % def1.vname)
>>> line1 = LINE(value=100, color='#990000', legend='Maximum Allowed')
>>> area1 = AREA(defObj=cdef3, color='#006600', legend='Good Speed')
>>> area2 = AREA(defObj=cdef2, color='#CC6633', legend='Too Fast')
>>> line2 = LINE(defObj=vdef2, color='#000099', legend='My Average',
... stack=True)
>>> gprint1 = GPRINT(vdef2, '%6.2lf kph')
Color is the spice of life. Let's spice it up a little::
>>> from pyrrd.graph import ColorAttributes
>>> ca = ColorAttributes()
>>> ca.back = '#333333'
>>> ca.canvas = '#333333'
>>> ca.shadea = '#000000'
>>> ca.shadeb = '#111111'
>>> ca.mgrid = '#CCCCCC'
>>> ca.axis = '#FFFFFF'
>>> ca.frame = '#AAAAAA'
>>> ca.font = '#FFFFFF'
>>> ca.arrow = '#FFFFFF'
Now we can create a graph for the data in our RRD file::
>>> from pyrrd.graph import Graph
>>> graphfile = tempfile.NamedTemporaryFile(suffix=".png")
>>> g = Graph(graphfile.name, start=920805000, end=920810000,
... vertical_label='km/h', color=ca, backend=bindings)
>>> g.data.extend([def1, cdef1, cdef2, cdef3, vdef1, vdef2, line1, area1,
... area2, line2, gprint1])
>>> g.write()
Let's make sure it's there::
>>> os.path.isfile(graphfile.name)
True
Let's see how big it is::
>>> bytes = len(open(graphfile.name).read())
>>> bytes != 0
True
>>> 8000 < bytes < 10700
True
Open that up in your favorite image browser and confirm that the appropriate
RRD graph is generated.
# Cleanup:
>>> os.unlink(rrdfile)
>>> os.path.exists(rrdfile)
False
"""
import rrdtool
from pyrrd.backend import external
from pyrrd.backend.common import buildParameters
def _cmd(command, args, debug=False):
function = getattr(rrdtool, command)
# XXX fucntion calls barf if args aren't strings (can't handle unicode
# right now)
args = [str(x) for x in args]
if debug:
print "function:", function
print "args:", args
return function(*args)
def create(filename, parameters):
"""
>>> rrdfile = '/tmp/test.rrd'
>>> parameters = [
... '--start',
... '920804400',
... 'DS:speed:COUNTER:600:U:U',
... 'RRA:AVERAGE:0.5:1:24',
... 'RRA:AVERAGE:0.5:6:10']
>>> create(rrdfile, parameters)
# Check that the file's there:
>>> import os
>>> os.path.exists(rrdfile)
True
# Cleanup:
>>> os.unlink(rrdfile)
>>> os.path.exists(rrdfile)
False
"""
parameters.insert(0, filename)
output = _cmd('create', parameters, debug=True)
def update(filename, parameters, debug=False):
"""
>>> rrdfile = '/tmp/test.rrd'
>>> parameters = [
... '--start',
... '920804400',
... 'DS:speed:COUNTER:600:U:U',
... 'RRA:AVERAGE:0.5:1:24',
... 'RRA:AVERAGE:0.5:6:10']
>>> create(rrdfile, parameters)
>>> import os
>>> os.path.exists(rrdfile)
True
>>> parameters = ['920804700:12345', '920805000:12357', '920805300:12363']
>>> update(rrdfile, parameters)
>>> parameters = ['920805600:12363', '920805900:12363','920806200:12373']
>>> update(rrdfile, parameters)
>>> parameters = ['920806500:12383', '920806800:12393','920807100:12399']
>>> update(rrdfile, parameters)
>>> parameters = ['920807400:12405', '920807700:12411', '920808000:12415']
>>> update(rrdfile, parameters)
>>> parameters = ['920808300:12420', '920808600:12422','920808900:12423']
>>> update(rrdfile, parameters)
>>> os.unlink(rrdfile)
>>> os.path.exists(rrdfile)
False
"""
parameters.insert(0, filename)
if debug:
_cmd('updatev', parameters)
else:
_cmd('update', parameters)
def fetch(filename, parameters, useBindings=False):
"""
By default, this function does not use the bindings for fetch. The reason
for this is we want default compatibility with the data output/results from
the fetch method for both the external and bindings modules.
If a developer really wants to use the native bindings to get the fetch
data, they may do so by explicitly setting the useBindings parameter. This
will return data in the Python Python bindings format, though.
Do be aware, though, that the PyRRD format is much easier to get data out
of in a sensible manner (unless you really like the RRDTool approach).
>>> rrdfile = '/tmp/test.rrd'
>>> parameters = [
... '--start',
... '920804400',
... 'DS:speed:COUNTER:600:U:U',
... 'RRA:AVERAGE:0.5:1:24',
... 'RRA:AVERAGE:0.5:6:10']
>>> create(rrdfile, parameters)
>>> import os
>>> os.path.exists(rrdfile)
True
>>> parameters = ['920804700:12345', '920805000:12357', '920805300:12363']
>>> update(rrdfile, parameters)
>>> parameters = ['920805600:12363', '920805900:12363','920806200:12373']
>>> update(rrdfile, parameters)
>>> parameters = ['920806500:12383', '920806800:12393','920807100:12399']
>>> update(rrdfile, parameters)
>>> parameters = ['920807400:12405', '920807700:12411', '920808000:12415']
>>> update(rrdfile, parameters)
>>> parameters = ['920808300:12420', '920808600:12422','920808900:12423']
>>> update(rrdfile, parameters)
>>> parameters = ['AVERAGE', '--start', '920804400', '--end', '920809200']
>>> results = fetch(rrdfile, parameters, useBindings=True)
>>> results[0]
(920804400, 920809500, 300)
>>> results[1]
('speed',)
>>> len(results[2])
17
# For more info on the PyRRD data format, see the docstring for
# pyrrd.external.fetch.
>>> parameters = ['AVERAGE', '--start', '920804400', '--end', '920809200']
>>> results = fetch(rrdfile, parameters, useBindings=False)
>>> sorted(results["ds"].keys())
['speed']
>>> os.unlink(rrdfile)
>>> os.path.exists(rrdfile)
False
"""
if useBindings:
parameters.insert(0, filename)
return _cmd('fetch', parameters)
else:
return external.fetch(filename, external.concat(parameters))
def dump(filename, outfile="", parameters=[]):
"""
The rrdtool Python bindings don't have support for dump, so we need to use
the external dump function.
>>> rrdfile = '/tmp/test.rrd'
>>> parameters = [
... '--start',
... '920804400',
... 'DS:speed:COUNTER:600:U:U',
... 'RRA:AVERAGE:0.5:1:24',
... 'RRA:AVERAGE:0.5:6:10']
>>> create(rrdfile, parameters)
>>> xml = dump(rrdfile)
>>> xmlBytes = len(xml)
>>> 3300 < xmlBytes < 4000
True
>>> xmlCommentCheck = '<!-- Round Robin Database Dump'
>>> xmlCommentCheck in xml[0:200]
True
>>> xmlfile = '/tmp/test.xml'
>>> dump(rrdfile, xmlfile)
>>> import os
>>> os.path.exists(xmlfile)
True
>>> os.unlink(rrdfile)
>>> os.unlink(xmlfile)
"""
return external.dump(filename, outfile, parameters)
def load(filename):
"""
The rrdtool Python bindings don't have support for load, so we need to use
the external load function.
>>> rrdfile = '/tmp/test.rrd'
>>> parameters = [
... '--start',
... '920804400',
... 'DS:speed:COUNTER:600:U:U',
... 'RRA:AVERAGE:0.5:1:24',
... 'RRA:AVERAGE:0.5:6:10']
>>> create(rrdfile, parameters)
>>> tree = load(rrdfile)
>>> [x.tag for x in tree]
['version', 'step', 'lastupdate', 'ds', 'rra', 'rra']
"""
return external.load(filename)
def info(filename, obj=None, useBindings=False, rawData=False, stream=None):
"""
Similarly to the fetch function, the info function uses
pyrrd.backend.external by default. This is due to the fact that 1) the
output of the RRD info module is much more easily legible, and 2) it is
very similar in form to the output produced by the "rrdtool info" command.
The output produced by the rrdtool Python bindings is a data structure and
more difficult to view.
However, if that output is what you desire, then simply set the useBindings
parameter to True.
"""
if useBindings:
result = _cmd('info', [filename])
if rawData:
return result
from pprint import pprint
if stream:
pprint(result, stream=stream)
else:
pprint(result)
else:
external.info(filename, obj)
def graph(filename, parameters):
"""
>>> import tempfile
>>>
>>> rrdfile = '/tmp/test.rrd'
>>> parameters = [
... '--start',
... '920804400',
... 'DS:speed:COUNTER:600:U:U',
... 'RRA:AVERAGE:0.5:1:24',
... 'RRA:AVERAGE:0.5:6:10']
>>> create(rrdfile, parameters)
>>> import os
>>> os.path.exists(rrdfile)
True
>>> parameters = ['920804700:12345', '920805000:12357', '920805300:12363']
>>> update(rrdfile, parameters)
>>> parameters = ['920805600:12363', '920805900:12363','920806200:12373']
>>> update(rrdfile, parameters)
>>> parameters = ['920806500:12383', '920806800:12393','920807100:12399']
>>> update(rrdfile, parameters)
>>> parameters = ['920807400:12405', '920807700:12411', '920808000:12415']
>>> update(rrdfile, parameters)
>>> parameters = ['920808300:12420', '920808600:12422','920808900:12423']
>>> update(rrdfile, parameters)
>>> parameters = [
... '--start',
... '920804400',
... '--end',
... '920808000',
... '--vertical-label',
... 'km/h',
... 'DEF:myspeed=%s:speed:AVERAGE' % rrdfile,
... 'CDEF:realspeed=myspeed,1000,*',
... 'CDEF:kmh=myspeed,3600,*',
... 'CDEF:fast=kmh,100,GT,kmh,0,IF',
... 'CDEF:good=kmh,100,GT,0,kmh,IF',
... 'HRULE:100#0000FF:"Maximum allowed"',
... 'AREA:good#00FF00:"Good speed"',
... 'AREA:fast#00FFFF:"Too fast"',
... 'LINE2:realspeed#FF0000:Unadjusted']
>>> graphfile = tempfile.NamedTemporaryFile()
>>> graph(graphfile.name, parameters)
>>> os.path.exists(graphfile.name)
True
"""
parameters.insert(0, filename)
output = _cmd('graph', parameters)
def prepareObject(function, obj):
"""
This is a funtion that serves to make interacting with the
backend as transparent as possible. It"s sole purpose it to
prepare the attributes and data of the various pyrrd objects
for use by the functions that call out to rrdtool.
For all of the rrdtool-methods in this module, we need to split
the named parameters up into pairs, assebled all the stuff in
the list obj.data, etc.
This function will get called by methods in the pyrrd wrapper
objects. For instance, most of the methods of pyrrd.rrd.RRD
will call this function. In graph, Pretty much only the method
pyrrd.graph.Graph.write() will call this function.
"""
if function == 'create':
validParams = ['start', 'step']
params = buildParameters(obj, validParams)
params += [unicode(x) for x in obj.ds]
params += [unicode(x) for x in obj.rra]
return (obj.filename, params)
if function == 'update':
validParams = ['template']
params = buildParameters(obj, validParams)
FIRST_VALUE = 0
DATA = 1
TIME_OR_DATA = 0
if obj.values[FIRST_VALUE][DATA]:
params += ['%s:%s' % (time, values) for time, values in obj.values]
else:
params += [data for data, nil in obj.values]
return (obj.filename, params)
if function == 'fetch':
validParams = ['resolution', 'start', 'end']
params = buildParameters(obj, validParams)
return (obj.filename, [obj.cf] + params)
if function == 'info':
return (obj.filename, obj)
if function == 'graph':
validParams = ['start', 'end', 'step', 'title',
'vertical_label', 'width', 'height', 'only_graph',
'upper_limit', 'lower_limit', 'rigid', 'alt_autoscale',
'alt_autoscale_max', 'no_gridfit', 'x_grid', 'y_grid',
'alt_y_grid', 'logarithmic', 'units_exponent', 'zoom',
'font', 'font_render_mode', 'interlaced', 'no_legend',
'force_rules_legend', 'tabwidth', 'base', 'color', 'imgformat',
'slope_mode']
params = buildParameters(obj, validParams)
params += [unicode(x) for x in obj.data]
return (obj.filename, params)
if __name__ == "__main__":
import doctest
doctest.testmod()
|