My favorites | Sign in
Project Logo
          
Changes to /trunk/rrd_feeder_rand.py
r0 vs. r4   Edit
  Compare: vs.   Format:
Revision r4
Go to: 
Project members, sign in to write a code review
/trunk/rrd_feeder_rand.py /trunk/rrd_feeder_rand.py   r4
  1 #!/usr/bin/env python
  2 # Copyright (c) 2008 Corey Goldberg (corey@goldb.org)
  3 #
  4 # RRDTool Random Number Data Feeder/Grapher
  5
  6
  7 import rrd
  8 import random
  9 import time
  10
  11
  12 interval = 10
  13 rrd_file = 'test.rrd'
  14
  15 my_rrd = rrd.RRD(rrd_file)
  16
  17 while True:
  18 rand = random.randint(1, 100)
  19 my_rrd.update(rand)
  20 my_rrd.graph(60)
  21 time.sleep(interval)
  22
  23
Hosted by Google Code