~ubuntu-branches/ubuntu/saucy/rrdtool/saucy-proposed

« back to all changes in this revision

Viewing changes to doc/rrdinfo.html

  • 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:
21
21
        <li><a href="#synopsis">SYNOPSIS</a></li>
22
22
        <li><a href="#description">DESCRIPTION</a></li>
23
23
        <li><a href="#example">EXAMPLE</a></li>
 
24
        <li><a href="#environment_variables">ENVIRONMENT VARIABLES</a></li>
24
25
        <li><a href="#author">AUTHOR</a></li>
25
26
</ul>
26
27
 
38
39
</p>
39
40
<hr />
40
41
<h1><a name="synopsis">SYNOPSIS</a></h1>
41
 
<p><strong>rrdtool</strong> <strong>info</strong> <em>filename.rrd</em></p>
 
42
<p><strong>rrdtool</strong> <strong>info</strong> <em>filename</em>
 
43
[<strong>--daemon</strong>&nbsp;<em>address</em>]</p>
42
44
<p>
43
45
</p>
44
46
<hr />
47
49
a parsing friendly format.</p>
48
50
<p>Check <a href="././rrdcreate.html">the rrdcreate manpage</a> if you are uncertain about the meaning of the
49
51
individual keys.</p>
 
52
<dl>
 
53
<dt><strong><a name="filename" class="item"><em>filename</em></a></strong></dt>
 
54
 
 
55
<dd>
 
56
<p>The name of the <strong>RRD</strong> you want to examine.</p>
 
57
</dd>
 
58
<dt><strong><a name="daemon_address" class="item"><strong>--daemon</strong> <em>address</em></a></strong></dt>
 
59
 
 
60
<dd>
 
61
<p>Address of the <a href="././rrdcached.html">the rrdcached manpage</a> daemon. If specified, a <code>flush</code> command is sent
 
62
to the server before reading the RRD files. This allows <strong>rrdtool</strong> to return
 
63
fresh data even if the daemon is configured to cache values for a long time.
 
64
For a list of accepted formats, see the <strong>-l</strong> option in the <a href="././rrdcached.html">the rrdcached manpage</a> manual.</p>
 
65
<pre>
 
66
 rrdtool info --daemon unix:/var/run/rrdcached.sock /var/lib/rrd/foo.rrd</pre>
 
67
</dd>
 
68
</dl>
50
69
<p>
51
70
</p>
52
71
<hr />
62
81
 rrd_version = &quot;0001&quot;
63
82
 step = 300
64
83
 last_update = 955892996
 
84
 header_size = 2872
65
85
 ds[a].type = &quot;GAUGE&quot;
66
86
 ds[a].minimal_heartbeat = 600
67
87
 ds[a].min = NaN
82
102
 rra[0].cdp_prep[0].unknown_datapoints = 0
83
103
 rra[0].cdp_prep[1].value = nan
84
104
 rra[0].cdp_prep[1].unknown_datapoints = 0</pre>
 
105
<p>
 
106
</p>
 
107
<hr />
 
108
<h1><a name="environment_variables">ENVIRONMENT VARIABLES</a></h1>
 
109
<p>The following environment variables may be used to change the behavior of
 
110
<code>rrdtoolinfo</code>:</p>
85
111
<dl>
86
 
<dt><strong><a name="filename_rrd" class="item"><em>filename.rrd</em></a></strong></dt>
 
112
<dt><strong><a name="rrdcached_address" class="item"><strong>RRDCACHED_ADDRESS</strong></a></strong></dt>
87
113
 
88
114
<dd>
89
 
<p>The name of the <strong>RRD</strong> you want to examine.</p>
 
115
<p>If this environment variable is set it will have the same effect as specifying
 
116
the <code>--daemon</code> option on the command line. If both are present, the command
 
117
line argument takes precedence.</p>
90
118
</dd>
91
119
</dl>
92
120
<p>