1275970Scy/* -*- Mode: Text -*- */
2275970ScyAutoGen Definitions perlopt;
3275970Scy
4275970Scy#include autogen-version.def
5275970Scy
6275970Scyprog-name      = 'plot_summary';
7275970Scyprog-title     = 'plot statistics generated by summary script';
8275970Scypackage		= ntp;
9275970Scy#include	version.def
10275970Scy
11275970Scylong-opts;
12275970Scygnu-usage;
13275970Scy
14275970Scyflag = {
15275970Scy    name        = directory;
16275970Scy    arg-type    = string;
17275970Scy    arg-default = '/tmp';
18275970Scy    descrip     = 'Where the summary files are';
19275970Scy    doc         = <<-  _EndOfDoc_
20275970Scy        The directory where the @code{plot_summary} will search for the
21275970Scy        *_summary files generated by @code{summary} script.
22275970Scy	_EndOfDoc_;
23275970Scy};
24275970Scy
25275970Scyflag = {
26275970Scy    name        = identifier;
27275970Scy    arg-type    = string;
28275970Scy    descrip     = 'Origin of the data';
29275970Scy    doc         = <<-  _EndOfDoc_
30275970Scy        Where does the plotted data come from, default to string "host" plus
31275970Scy        current hostname
32275970Scy	_EndOfDoc_;
33275970Scy};
34275970Scy
35275970Scyflag = {
36275970Scy    name        = offset-limit;
37275970Scy    arg-type    = string;
38275970Scy    arg-name    = float;
39275970Scy    arg-default = "0.128";
40275970Scy    descrip     = 'Limit of absolute offset';
41275970Scy    doc         = <<-  _EndOfDoc_
42275970Scy	_EndOfDoc_;
43275970Scy};
44275970Scy
45275970Scyflag = {
46275970Scy    name        = peer;
47275970Scy    arg-type    = string;
48275970Scy    stack-arg;
49275970Scy    max         = NOLIMIT;
50275970Scy    descrip     = 'Peers to generate plots for';
51275970Scy    doc         = <<-  _EndOfDoc_
52275970Scy        By default the peer_summary plots are not generated. Use this option to
53275970Scy        specify list of peers if you want to generate plots for them.
54275970Scy	_EndOfDoc_;
55275970Scy};
56275970Scy
57275970Scyflag = {
58275970Scy    name        = plot-term;
59275970Scy    arg-type    = string;
60275970Scy    descrip     = 'Gnuplot terminal';
61275970Scy    doc         = <<-  _EndOfDoc_
62275970Scy        This is string is passed directly to the @code{gnuplot set terminal}
63275970Scy        command.  Default is @code{x11} if @code{DISPLAY} is set and
64275970Scy        @code{dumb} is it's not'. See output from @code(gnuplot -e "set
65301256Sdelphij        terminal") for the list of available options.
66275970Scy	_EndOfDoc_;
67275970Scy};
68275970Scy
69275970Scyflag = {
70275970Scy    name        = output-file;
71275970Scy    arg-type    = str;
72275970Scy    descrip     = 'Output file';
73275970Scy    doc         = <<-  _EndOfDoc_
74275970Scy        Output file for @code{gnuplot}, default to stdout.
75275970Scy	_EndOfDoc_;
76275970Scy};
77275970Scy
78275970Scyflag = {
79275970Scy    name        = dont-wait;
80275970Scy    descrip     = "Don't wait for keystroke between plots";
81275970Scy    doc         = <<-  _EndOfDoc_
82275970Scy	_EndOfDoc_;
83275970Scy};
84