-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
This makes for awkward implementations of the interfaces for projects that treat warnings as errors.
tally/core/src/main/java/com/uber/m3/tally/StatsReporter.java
Lines 67 to 101 in 3164eb6
| /** | |
| * Report a {@link Histogram}. | |
| * @param name name of {@link Histogram} to report | |
| * @param tags tags to report on | |
| * @param buckets {@link Buckets} of the {@link Histogram} | |
| * @param bucketLowerBound lower bound of the bucket to report | |
| * @param bucketUpperBound upper bound of the bucket to report | |
| * @param samples samples to report | |
| */ | |
| void reportHistogramValueSamples( | |
| String name, | |
| Map<String, String> tags, | |
| Buckets buckets, | |
| double bucketLowerBound, | |
| double bucketUpperBound, | |
| long samples | |
| ); | |
| /** | |
| * Report a {@link Histogram}. | |
| * @param name name of {@link Histogram} to report | |
| * @param tags tags to report on | |
| * @param buckets {@link Buckets} of the {@link Histogram} | |
| * @param bucketLowerBound lower bound of the bucket to report | |
| * @param bucketUpperBound upper bound of the bucket to report | |
| * @param samples samples to report | |
| */ | |
| void reportHistogramDurationSamples( | |
| String name, | |
| Map<String, String> tags, | |
| Buckets buckets, | |
| Duration bucketLowerBound, | |
| Duration bucketUpperBound, | |
| long samples | |
| ); |
| Histogram histogram(String name, @Nullable Buckets buckets); |
tally/core/src/main/java/com/uber/m3/tally/Buckets.java
Lines 27 to 31 in 3164eb6
| /** | |
| * @deprecated DO NOT USE | |
| * | |
| * Please use {@link ImmutableBuckets} instead | |
| */ |
Metadata
Metadata
Assignees
Labels
No labels