You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Kunal Khatua (JIRA)" <ji...@apache.org> on 2017/10/19 00:54:00 UTC

[jira] [Created] (DRILL-5892) Distinguish between states for query statistics exposed via JMX

Kunal Khatua created DRILL-5892:
-----------------------------------

             Summary: Distinguish between states for query statistics exposed via JMX
                 Key: DRILL-5892
                 URL: https://issues.apache.org/jira/browse/DRILL-5892
             Project: Apache Drill
          Issue Type: Improvement
    Affects Versions: 1.11.0
            Reporter: Kunal Khatua
             Fix For: Future


Currently, the JMX metrics exposed 
{code:java}
metrics:name=drill.queries.completed
metrics:name=drill.queries.running
metrics:name=drill.queries.enqueued
{code}

The completed queries, however, do not distinguish between the outcomes of the completed queries.

The proposal is to also provide success, failed, cancelled and timeout (yet to implement) states.
{code:xml}
  "metrics:name=drill.queries" : {
    "completed" : {
      "successful": INTEGER,
      "failed": INTEGER,
      "cancelled": INTEGER,
      "timeout": INTEGER
    },
    "running" : INTEGER,
    "enqueued" : {
      "small" : INTEGER,
      "large" : INTEGER
      }
    }
{code}







--
This message was sent by Atlassian JIRA
(v6.4.14#64029)