forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Record histogram and other statistics for the ProfileTask objects. In…
… case of recording VFS_ stats we try to catalog the access base on the path type. -- MOS_MIGRATED_REVID=108238357
- Loading branch information
1 parent
b2519e0
commit 5f04897
Showing
6 changed files
with
411 additions
and
13 deletions.
There are no files selected for viewing
122 changes: 122 additions & 0 deletions
122
src/main/java/com/google/devtools/build/lib/profiler/MetricData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
// Copyright 2014 The Bazel Authors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package com.google.devtools.build.lib.profiler; | ||
|
||
import com.google.common.base.Joiner; | ||
import com.google.common.base.Predicate; | ||
import com.google.common.collect.Collections2; | ||
import com.google.common.collect.ImmutableList; | ||
import com.google.common.collect.Range; | ||
|
||
import java.text.DecimalFormat; | ||
|
||
/** | ||
* Metric data for {@code description} object. Contains count, average, standard deviation, max and | ||
* histogram. | ||
*/ | ||
public final class MetricData { | ||
|
||
private final Object description; | ||
private final ImmutableList<HistogramElement> histogram; | ||
private final int count; | ||
private final double avg; | ||
private final double stdDev; | ||
private final int max; | ||
private static final Predicate<HistogramElement> NON_EMPTY_HISTOGRAM_ELEMENT = | ||
new Predicate<HistogramElement>() { | ||
@Override | ||
public boolean apply(HistogramElement element) { | ||
return element.count > 0; | ||
} | ||
}; | ||
|
||
public MetricData(Object description, ImmutableList<HistogramElement> histogram, int count, | ||
double avg, double stdDev, int max) { | ||
this.description = description; | ||
this.histogram = histogram; | ||
this.count = count; | ||
this.avg = avg; | ||
this.stdDev = stdDev; | ||
this.max = max; | ||
} | ||
|
||
public Object getDescription() { | ||
return description; | ||
} | ||
|
||
public ImmutableList<HistogramElement> getHistogram() { | ||
return histogram; | ||
} | ||
|
||
public int getCount() { | ||
return count; | ||
} | ||
|
||
public double getAvg() { | ||
return avg; | ||
} | ||
|
||
public double getStdDev() { | ||
return stdDev; | ||
} | ||
|
||
public int getMax() { | ||
return max; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
if (count == 0) { | ||
return "'" + description + "'. Zero data recorded"; | ||
} | ||
DecimalFormat fmt = new DecimalFormat("0.###"); | ||
return "'" + description + "'. " | ||
+ " Count: " + count | ||
+ " Avg: " + fmt.format(avg) | ||
+ " StdDev: " + fmt.format(stdDev) | ||
+ " Max: " + max | ||
+ " Histogram:\n " | ||
+ Joiner.on("\n ").join(Collections2.filter(histogram, NON_EMPTY_HISTOGRAM_ELEMENT)); | ||
} | ||
|
||
/** An histogram element that contains the range that applies to and the number of elements. */ | ||
public static final class HistogramElement { | ||
|
||
private final Range<Integer> range; | ||
private final int count; | ||
|
||
HistogramElement(Range<Integer> range, int count) { | ||
this.range = range; | ||
this.count = count; | ||
} | ||
|
||
public Range<Integer> getRange() { | ||
return range; | ||
} | ||
|
||
public int getCount() { | ||
return count; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
|
||
return String.format("%-15s:%10s", | ||
"[" + range.lowerEndpoint() + ".." + (range.hasUpperBound() | ||
? range.upperEndpoint() | ||
: "\u221e") // infinite symbol | ||
+ " ms]", count); | ||
} | ||
} | ||
} |
97 changes: 97 additions & 0 deletions
97
src/main/java/com/google/devtools/build/lib/profiler/PredicateBasedStatRecorder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// Copyright 2014 The Bazel Authors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package com.google.devtools.build.lib.profiler; | ||
|
||
import com.google.common.base.Predicate; | ||
import com.google.common.collect.ImmutableList; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* A stat recorder that is able to look at the kind of object added and delegate to the appropriate | ||
* {@link StatRecorder} based on a predicate. | ||
* | ||
* <p> Note that the predicates are evaluated in order and delegated only to the first one. That | ||
* means that the most specific and cheapest predicates should be passed first. | ||
*/ | ||
public class PredicateBasedStatRecorder implements StatRecorder { | ||
|
||
private final Predicate[] predicates; | ||
private final StatRecorder[] recorders; | ||
|
||
public PredicateBasedStatRecorder(List<RecorderAndPredicate> stats) { | ||
predicates = new Predicate[stats.size()]; | ||
recorders = new StatRecorder[stats.size()]; | ||
for (int i = 0; i < stats.size(); i++) { | ||
RecorderAndPredicate stat = stats.get(i); | ||
predicates[i] = stat.predicate; | ||
recorders[i] = stat.recorder; | ||
} | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
@Override | ||
public void addStat(int duration, Object obj) { | ||
String description = obj.toString(); | ||
for (int i = 0; i < predicates.length; i++) { | ||
if (predicates[i].apply(description)) { | ||
recorders[i].addStat(duration, obj); | ||
return; | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public boolean isEmpty() { | ||
for (StatRecorder recorder : recorders) { | ||
if (!recorder.isEmpty()) { | ||
return false; | ||
} | ||
} | ||
return true; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
StringBuilder sb = new StringBuilder(); | ||
for (StatRecorder recorder : recorders) { | ||
if (recorder.isEmpty()) { | ||
continue; | ||
} | ||
sb.append(recorder); | ||
sb.append("\n"); | ||
} | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* A Wrapper of a {@code StatRecorder} and a {@code Predicate}. Objects that matches the predicate | ||
* will be delegated to the StatRecorder. | ||
*/ | ||
public static final class RecorderAndPredicate { | ||
|
||
private final StatRecorder recorder; | ||
private final Predicate<? super String> predicate; | ||
|
||
public RecorderAndPredicate(StatRecorder recorder, Predicate<? super String> predicate) { | ||
this.recorder = recorder; | ||
this.predicate = predicate; | ||
} | ||
} | ||
|
||
/** Returns all the delegate stat recorders. */ | ||
public ImmutableList<StatRecorder> getRecorders() { | ||
return ImmutableList.<StatRecorder>builder().add(recorders).build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.