~ubuntu-branches/ubuntu/maverick/rrdtool/maverick

« back to all changes in this revision

Viewing changes to doc/rrdtutorial.txt

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2010-07-22 08:07:01 UTC
  • mfrom: (1.2.8 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100722080701-k46mgdfz6euxwqsm
Tags: 1.4.3-1ubuntu1
* Merge from debian unstable, Remaining changes:
  - debian/control: Don't build against ruby1.9 as we don't want
    it in main.
* require libdbi >= 0.8.3 to prevent aborts when using dbi datasources

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
 
83
83
       Most likely you will start to use RRDtool to store and process data
84
84
       collected via SNMP. The data will most likely be bytes (or bits)
85
 
       transfered from and to a network or a computer.  But it can also be
 
85
       transferred from and to a network or a computer.  But it can also be
86
86
       used to display tidal waves, solar radiation, power consumption, number
87
87
       of visitors at an exhibition, noise levels near an airport, temperature
88
88
       on your favorite holiday location, temperature in the fridge and
89
 
       whatever you imagination can come up with.
 
89
       whatever your imagination can come up with.
90
90
 
91
91
       You only need a sensor to measure the data and be able to feed the
92
92
       numbers into RRDtool. RRDtool then lets you create a database, store
144
144
 
145
145
       Assume we have a device that transfers bytes to and from the Internet.
146
146
       This device keeps a counter that starts at zero when it is turned on,
147
 
       increasing with every byte that is transfered. This counter will
 
147
       increasing with every byte that is transferred. This counter will
148
148
       probably have a maximum value. If this value is reached and an extra
149
149
       byte is counted, the counter starts over at zero. This is the same as
150
150
       many counters in the world such as the mileage counter in a car.
156
156
       counting from 0 to 4294967295. We will use these values in the
157
157
       examples.  The device, when asked, returns the current value of the
158
158
       counter. We know the time that has passes since we last asked so we now
159
 
       know how many bytes have been transfered ***on average*** per second.
 
159
       know how many bytes have been transferred ***on average*** per second.
160
160
       This is not very hard to calculate. First in words, then in
161
161
       calculations:
162
162
 
533
533
       types of values like temperature.
534
534
 
535
535
       Many people interested in RRDtool will use the counter that keeps track
536
 
       of octets (bytes) transfered by a network device. So let's do just that
537
 
       next. We will start with a description of how to collect data.
 
536
       of octets (bytes) transferred by a network device. So let's do just
 
537
       that next. We will start with a description of how to collect data.
538
538
 
539
539
       Some people will make a remark that there are tools which can do this
540
540
       data collection for you. They are right! However, I feel it is
1154
1154
 
1155
1155
 
1156
1156
 
1157
 
1.3.8                             2009-04-09                    RRDTUTORIAL(1)
 
1157
1.4.3                             2009-10-15                    RRDTUTORIAL(1)