2013-04-25 5 views
5

コダハレの「メトリック」が受け取ったプロパティの1つに「偏りがあります。
誰かが何を意味するのか説明できますか?「メトリック」ヒストグラムの「バイアス」とは何ですか

public Histogram newHistogram(Class<?> klass, 
        String name, 
        boolean biased) 
Creates a new Histogram and registers it under the given class and name. 
Parameters: 
klass - the class which owns the metric 
name - the name of the metric 
biased - whether or not the histogram should be biased 
Returns: 
a new Histogram 

答えて

6

疑いで、ソースを見てみると:

/** 
    * Uses an exponentially decaying sample of 1028 elements, which offers a 99.9% confidence 
    * level with a 5% margin of error assuming a normal distribution, and an alpha factor of 
    * 0.015, which heavily biases the sample to the past 5 minutes of measurements. 
    */ 
    BIASED { 
     @Override 
     public Sample newSample() { 
      return new ExponentiallyDecayingSample(DEFAULT_SAMPLE_SIZE, DEFAULT_ALPHA); 
     } 
    }; 

にバイアスヒストグラムは、より最近の測定に多くの重みを与えるものです。

関連する問題