You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Shinya Yoshida (JIRA)" <ji...@apache.org> on 2017/04/25 06:34:04 UTC

[jira] [Created] (HBASE-17957) Custom metrics of replicate endpoints don't prepend "source." to global metrics

Shinya Yoshida created HBASE-17957:
--------------------------------------

             Summary:  Custom metrics of replicate endpoints don't prepend "source." to global metrics
                 Key: HBASE-17957
                 URL: https://issues.apache.org/jira/browse/HBASE-17957
             Project: HBase
          Issue Type: Bug
          Components: Replication
    Affects Versions: 0.98.22, 2.0.0, 1.4.0
            Reporter: Shinya Yoshida



Custom metrics for custom replication endpoints is introduced by [HBASE-16448].
The name of local custom metrics follows "source.{id}.{metricsName}", but the name of global custom metrics doesn't follow "source.{metricsName}"
Ex:
{code}
// default metrics
"source.2.shippedOps" : 1234, // peer local
"source.shippedOps" : 12345, // global
// custom metrics
"source.1.failed.start" : 1, // peer local
"failed.start" : 1, // global
{code}
When we consider that default metrics do so, it should follow "source.{metricsName}" like:
{code}
"source.1.failed.start" : 1,
"source.failed.start" : 1,
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)