aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDino Oliva <dpo@google.com>2017-03-09 10:10:15 -0800
committerDino Oliva <dpo@google.com>2017-03-09 10:10:15 -0800
commit53ef89bde884c6c8e945b892c3c6d4630a043ebe (patch)
tree010ba2f757ed665787d41947fb1073f86cf384a9
parent2358b4c9b4d7ccac3fa021a5dacdd52ef735ed54 (diff)
downloadplatform_external_opencensus-java-53ef89bde884c6c8e945b892c3c6d4630a043ebe.tar.gz
platform_external_opencensus-java-53ef89bde884c6c8e945b892c3c6d4630a043ebe.tar.bz2
platform_external_opencensus-java-53ef89bde884c6c8e945b892c3c6d4630a043ebe.zip
Makes interval stats descriptions consistent
-rw-r--r--core/src/main/java/com/google/instrumentation/stats/RpcConstants.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/com/google/instrumentation/stats/RpcConstants.java b/core/src/main/java/com/google/instrumentation/stats/RpcConstants.java
index 1e6ff820..c6d47ea7 100644
--- a/core/src/main/java/com/google/instrumentation/stats/RpcConstants.java
+++ b/core/src/main/java/com/google/instrumentation/stats/RpcConstants.java
@@ -251,7 +251,7 @@ public final class RpcConstants {
public static final IntervalViewDescriptor RPC_CLIENT_REQUEST_BYTES_INTERVAL_VIEW =
IntervalViewDescriptor.create(
"rpc client request_bytes",
- "Minute and Hour stats for request in bytes",
+ "Minute and Hour stats for request size in bytes",
RPC_CLIENT_REQUEST_BYTES,
IntervalAggregationDescriptor.create(Arrays.asList(MINUTE, HOUR)),
Arrays.asList(RPC_CLIENT_METHOD));
@@ -259,7 +259,7 @@ public final class RpcConstants {
public static final IntervalViewDescriptor RPC_CLIENT_RESPONSE_BYTES_INTERVAL_VIEW =
IntervalViewDescriptor.create(
"rpc client response_bytes",
- "Minute and Hour stats for response size bytes",
+ "Minute and Hour stats for response size in bytes",
RPC_CLIENT_RESPONSE_BYTES,
IntervalAggregationDescriptor.create(Arrays.asList(MINUTE, HOUR)),
Arrays.asList(RPC_CLIENT_METHOD));