Update version according to OSCI-856
[packages/precise/mcollective.git] / plugins / mcollective / aggregate / average.ddl
1 metadata  :name        => "average",
2           :description => "Displays the average of a set of numeric values",
3           :author      => "Pieter Loubser <pieter.loubser@puppetlabs.com>",
4           :license     => "ASL 2.0",
5           :version     => "1.0",
6           :url         => "http://projects.puppetlabs.com/projects/mcollective-plugins/wiki",
7           :timeout     => 5
8
9 usage <<-USAGE
10
11   This aggregate plugin will determine te average of a set of numeric values.
12
13   DDL Example:
14
15     summarize do
16       aggregate average(:value)
17     end
18
19   Sample Output:
20
21     host1.example.com
22       Value: 10
23
24     host2.example.com
25       Value: 20
26
27
28    Summary of Value:
29
30       Average of Value: 15.000000
31
32 USAGE
33