aboutsummaryrefslogtreecommitdiffstats
path: root/src/_jmeter-plugins
blob: 37609b5a4c5d9c3a92451b96ca3de57b2073f3c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#compdef jmeter-plugins
# ------------------------------------------------------------------------------
# Description
# -----------
#
#  Completion script for jmeter-plugins command line tool 0.4.2
#  (https://jmeter-plugins.org/).
#
# ------------------------------------------------------------------------------
# Authors
# -------
#
#  * Julien Nicoulaud <julien.nicoulaud@gmail.com>
#
# ------------------------------------------------------------------------------


_arguments \
  '(- 1 *)--help[show help options]' \
  '--generate-png[generate PNG file containing graph]:PNG file name:_files -g "*.png"' \
  '--generate-csv[generate CSV file containing graph data]:CSV file name:_files -g "*.csv"' \
  '--input-jtl[load data from specified JTL file]:JTL file:_files -g "*.jtl"' \
  '--plugin-type[type of graph to use for results generation]:class:((AggregateReport ThreadsStateOverTime BytesThroughputOverTime HitsPerSecond LatenciesOverTime PerfMon ResponseCodesPerSecond ResponseTimesDistribution ResponseTimesOverTime ResponseTimesPercentiles ThroughputOverTime ThroughputVsThreads TimesVsThreads TransactionsPerSecond))' \
  '--width[set graph width]:graph width (pixels)' \
  '--height[set graph height]::graph height (pixels)' \
  '--granulation[granulation time for samples]:time (ms)' \
  '--relative-times[use relative X axis times, no will set absolute times]: :((yes no))' \
  '--aggregate-rows[aggregate all rows into one]: :((yes no))' \
  '--paint-gradient[paint gradient background]: :((yes no))' \
  '--paint-zeroing[paint zeroing lines]: :((yes no))' \
  '--prevent-outliers[prevent outliers on distribution graph]: :((yes no))' \
  '--limit-rows[limit number of points in row]:number of points' \
  '--force-y[force Y axis limit]:limit' \
  '--hide-low-counts[hide points with sample count below limit]:limit'

# Local Variables:
# mode: Shell-Script
# sh-indentation: 2
# indent-tabs-mode: nil
# sh-basic-offset: 2
# End:
# vim: ft=zsh sw=2 ts=2 et