plot_summary-opts.def revision 1.1.1.1
1/* -*- Mode: Text -*- */
2autogen definitions perlopt;
3#include autogen-version.def
4prog-name      = 'plot_summary';
5prog-title     = 'plot statistics generated by summary script';
6long-opts;
7gnu-usage;
8
9flag = {
10    name        = directory;
11    arg-type    = string;
12    arg-default = '/tmp';
13    descrip     = 'Where the summary files are';
14    doc         = <<-  _EndOfDoc_
15        The directory where the @code{plot_summary} will search for the
16        *_summary files generated by @code{summary} script.
17	_EndOfDoc_;
18};
19
20flag = {
21    name        = identifier;
22    arg-type    = string;
23    descrip     = 'Origin of the data';
24    doc         = <<-  _EndOfDoc_
25        Where does the plotted data come from, default to string "host" plus
26        current hostname
27	_EndOfDoc_;
28};
29
30flag = {
31    name        = offset-limit;
32    arg-type    = string;
33    arg-name    = float;
34    arg-default = "0.128";
35    descrip     = 'Limit of absolute offset';
36    doc         = <<-  _EndOfDoc_
37	_EndOfDoc_;
38};
39
40flag = {
41    name        = peer;
42    arg-type    = string;
43    stack-arg;
44    max         = NOLIMIT;
45    descrip     = 'Peers to generate plots for';
46    doc         = <<-  _EndOfDoc_
47        By default the peer_summary plots are not generated. Use this option to
48        specify list of peers if you want to generate plots for them.
49	_EndOfDoc_;
50};
51
52flag = {
53    name        = plot-term;
54    arg-type    = string;
55    descrip     = 'Gnuplot terminal';
56    doc         = <<-  _EndOfDoc_
57        This is string is passed directly to the @code{gnuplot set terminal}
58        command.  Default is @code{x11} if @code{DISPLAY} is set and
59        @code{dumb} is it's not'. See output from @code(gnuplot -e "set
60        terminal") for the list of avalaible options.
61	_EndOfDoc_;
62};
63
64flag = {
65    name        = output-file;
66    arg-type    = str;
67    descrip     = 'Output file';
68    doc         = <<-  _EndOfDoc_
69        Output file for @code{gnuplot}, default to stdout.
70	_EndOfDoc_;
71};
72
73flag = {
74    name        = dont-wait;
75    descrip     = "Don't wait for keystroke between plots";
76    doc         = <<-  _EndOfDoc_
77	_EndOfDoc_;
78};
79