try replacing tabs with spaces for GitHub's Markdown

This commit is contained in:
Ștefan Talpalaru 2019-03-07 01:31:18 +01:00
parent 4655a7b3dc
commit 476c1c5c22
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
1 changed files with 14 additions and 14 deletions

View File

@ -25,21 +25,21 @@ print_help() {
Usage: $(basename $0) --pid <process ID> [OTHER OPTIONS]
E.g.: $(basename $0) --pid 12345 --out bla # produces bla.rrd, bla.sh and bla.svg
-p, --pid the process ID of the target program (mandatory
argument)
-h, --help this help message
-v, --verbose show raw data on stdout
-o, --output base filename for the generated .rrd, .sh and .svg files
(defaults to "out")
-r, --rows maximum number of rows in the RRD file (defaults to
100000 and, at one datapoint per second, it's also the
maximum duration of recorded and visualised data)
-p, --pid the process ID of the target program (mandatory
argument)
-h, --help this help message
-v, --verbose show raw data on stdout
-o, --output base filename for the generated .rrd, .sh and .svg files
(defaults to "out")
-r, --rows maximum number of rows in the RRD file (defaults to
100000 and, at one datapoint per second, it's also the
maximum duration of recorded and visualised data)
-g, --graph-generation-interval
interval in seconds at which the SVG graph is being
regenerated during data collection (default: 60, set it
to 0 to disable)
--height graph height (in pixels, default: 800)
--min-width minimum graph width (default: 1000)
interval in seconds at which the SVG graph is being
regenerated during data collection (default: 60, set it
to 0 to disable)
--height graph height (in pixels, default: 800)
--min-width minimum graph width (default: 1000)
EOF
}
! PARSED=$(getopt --options=${OPTS} --longoptions=${LONGOPTS} --name "$0" -- "$@")