You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by td...@apache.org on 2017/07/13 02:39:38 UTC

phoenix git commit: PHOENIX-3978 Expose mutation failures in our metrics (addendum)

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 1ab027398 -> 988df1517


PHOENIX-3978 Expose mutation failures in our metrics (addendum)


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/988df151
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/988df151
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/988df151

Branch: refs/heads/4.x-HBase-0.98
Commit: 988df1517c677b66f6ebf54f4a0485a4d96864d1
Parents: 1ab0273
Author: Thomas <td...@salesforce.com>
Authored: Wed Jul 12 19:39:09 2017 -0700
Committer: Thomas <td...@salesforce.com>
Committed: Wed Jul 12 19:39:17 2017 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/phoenix/monitoring/MetricType.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/988df151/phoenix-core/src/main/java/org/apache/phoenix/monitoring/MetricType.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/monitoring/MetricType.java b/phoenix-core/src/main/java/org/apache/phoenix/monitoring/MetricType.java
index 0c72e34..45295a7 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/monitoring/MetricType.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/monitoring/MetricType.java
@@ -21,10 +21,10 @@ public enum MetricType {
 
 	NO_OP_METRIC("no", "No op metric"),
 	// mutation (write) related metrics 
-    MUTATION_BATCH_SIZE("mc", "Number of mutations in the batch"),
+    MUTATION_BATCH_SIZE("ms", "Number of mutations in the batch"),
     MUTATION_BYTES("mb", "Size of mutations in bytes"),
     MUTATION_COMMIT_TIME("mt", "Time it took to commit a batch of mutations"),
-    MUTATION_BATCH_FAILED_SIZE("mfc", "Number of mutations that failed to be committed"),
+    MUTATION_BATCH_FAILED_SIZE("mfs", "Number of mutations that failed to be committed"),
     MUTATION_SQL_COUNTER("msc", "Counter for number of mutation sql statements"),
     // query (read) related metrics
     QUERY_TIME("qt", "Query times"),