Java Code Examples for org.apache.hadoop.metrics2.MetricsRecordBuilder#add()

The following examples show how to use org.apache.hadoop.metrics2.MetricsRecordBuilder#add() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MetricsRegistry.java    From hadoop with Apache License 2.0 5 votes vote down vote up
/**
 * Sample all the mutable metrics and put the snapshot in the builder
 * @param builder to contain the metrics snapshot
 * @param all get all the metrics even if the values are not changed.
 */
public synchronized void snapshot(MetricsRecordBuilder builder, boolean all) {
  for (MetricsTag tag : tags()) {
    builder.add(tag);
  }
  for (MutableMetric metric : metrics()) {
    metric.snapshot(builder, all);
  }
}
 
Example 2
Source File: MetricsRegistry.java    From big-c with Apache License 2.0 5 votes vote down vote up
/**
 * Sample all the mutable metrics and put the snapshot in the builder
 * @param builder to contain the metrics snapshot
 * @param all get all the metrics even if the values are not changed.
 */
public synchronized void snapshot(MetricsRecordBuilder builder, boolean all) {
  for (MetricsTag tag : tags()) {
    builder.add(tag);
  }
  for (MutableMetric metric : metrics()) {
    metric.snapshot(builder, all);
  }
}
 
Example 3
Source File: DynamicMetricsRegistry.java    From hbase with Apache License 2.0 5 votes vote down vote up
/**
 * Sample all the mutable metrics and put the snapshot in the builder
 * @param builder to contain the metrics snapshot
 * @param all get all the metrics even if the values are not changed.
 */
public void snapshot(MetricsRecordBuilder builder, boolean all) {
  for (MetricsTag tag : tags()) {
    builder.add(tag);
  }
  for (MutableMetric metric : metrics()) {
    metric.snapshot(builder, all);
  }
}