Update version according to OSCI-856
[packages/precise/mcollective.git] / plugins / mcollective / aggregate / sum.ddl
1 metadata  :name        => "Sum",
2           :description => "Determine the total added value of a set of 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 the total added value of a set of values.
12
13   DDL Example:
14
15     summarize do
16       aggregate sum(: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       Sum of Value: 30
31
32 USAGE
33