HomeSort by relevance Sort by last modified time
    Searched defs:Exemplar (Results 1 - 2 of 2) sorted by null

  /external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
Distribution.java 255 * Creates a {@link Bucket} with an {@link Exemplar}.
258 * @param exemplar the {@code Exemplar} of this {@code Bucket}.
262 public static Bucket create(long count, Exemplar exemplar) {
264 Utils.checkNotNull(exemplar, "exemplar");
265 return new AutoValue_Distribution_Bucket(count, exemplar);
277 * Returns the {@link Exemplar} associated with the {@link Bucket}, or {@code null} if there
280 * @return the {@code Exemplar} associated with the {@code Bucket}, or {@code null} if ther
    [all...]
  /external/opencensus-java/api/src/main/java/io/opencensus/stats/
AggregationData.java 286 List<Exemplar> exemplars) {
297 Utils.checkNotNull(exemplars, "exemplar list should not be null.");
298 for (Exemplar exemplar : exemplars) {
299 Utils.checkNotNull(exemplar, "exemplar");
309 Collections.<Exemplar>unmodifiableList(new ArrayList<Exemplar>(exemplars)));
338 Collections.<Exemplar>emptyList());
391 * Returns the {@link Exemplar}s associated with histogram buckets
    [all...]

Completed in 60 milliseconds