Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
AvgMetricAggregatorProvider.java
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2012 Grid Dynamics Consulting Services, Inc, All Rights Reserved
3  * http://www.griddynamics.com
4  *
5  * This library is free software; you can redistribute it and/or modify it under the terms of
6  * the Apache License; either
7  * version 2.0 of the License, or any later version.
8  *
9  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
10  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
11  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
12  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
13  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
14  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
15  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
16  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
17  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
18  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19  */
20 
21 package com.griddynamics.jagger.engine.e1.collector;
22 
28 
30  @Override
32  return new AvgMetricAggregator();
33  }
34 
35  private static class AvgMetricAggregator implements MetricAggregator<Number> {
36 
37  Double sum = null;
38  long count = 0;
39 
40  @Override
41  public void append(Number calculated) {
42  if (sum == null)
43  sum = new Double(0);
44 
45  sum += calculated.doubleValue();
46  ++count;
47  }
48 
49  @Override
50  public Number getAggregated() {
51  if (sum == null)
52  return null;
53 
54  if (count == 0) {
55  return 0;
56  }
57 
58  double result = sum / count;
59 
60  return Double.valueOf(result);
61  }
62 
63  @Override
64  public void reset() {
65  sum = null;
66  count = 0;
67  }
68 
69  @Override
70  public String getName() {
71  return "avg";
72  }
73 
74  @Override
75  public String toString() {
76  return "AvgMetricAggregator{" +
77  "sum=" + sum +
78  ", count=" + count +
79  '}';
80  }
81  }
82 }
83