You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Arina Ielchiieva (JIRA)" <ji...@apache.org> on 2017/01/05 10:43:58 UTC

[jira] [Commented] (DRILL-5176) Rest API for stats.json gives HTTP 404 Not Found error

    [ https://issues.apache.org/jira/browse/DRILL-5176?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15801030#comment-15801030 ] 

Arina Ielchiieva commented on DRILL-5176:
-----------------------------------------

[~knguyen]
DRILL-4604 introduced new index page design. /stats.json was renamed to /cluster.json as it's more logically correct considering the info it returns:
{noformat}
{
  "drillbits" : [ {
    "address" : "cv1.mapr.lab",
    "userPort" : "31010",
    "controlPort" : "31011",
    "dataPort" : "31012",
    "version" : "1.10.0-SNAPSHOT",
    "current" : true,
    "versionMatch" : true
  }, {
    "address" : "cv2.mapr.lab",
    "userPort" : "31010",
    "controlPort" : "31011",
    "dataPort" : "31012",
    "version" : "1.10.0-SNAPSHOT",
    "current" : false,
    "versionMatch" : true
  }, {
    "address" : "cv3.mapr.lab",
    "userPort" : "31010",
    "controlPort" : "31011",
    "dataPort" : "31012",
    "version" : "1.10.0-SNAPSHOT",
    "current" : false,
    "versionMatch" : true
  }, {
    "address" : "cv4.mapr.lab",
    "userPort" : "31010",
    "controlPort" : "31011",
    "dataPort" : "31012",
    "version" : "1.10.0-SNAPSHOT",
    "current" : false,
    "versionMatch" : true
  } ],
  "currentVersion" : "1.10.0-SNAPSHOT",
  "mismatchedVersions" : [ ]
}
{noformat}

> Rest API for stats.json gives HTTP 404 Not Found error 
> -------------------------------------------------------
>
>                 Key: DRILL-5176
>                 URL: https://issues.apache.org/jira/browse/DRILL-5176
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Client - HTTP
>    Affects Versions: 1.10.0
>            Reporter: Krystal
>
> commit id: bbcf4b765e6946a8b6c7110372c4e1cadbfefa44
> rest api for stats.json now returns "HTTP 404 Not Found" error.
> curl -X GET -i http://<ip>:8047/stats.json
> HTTP/1.1 500 Internal Server Error
> Content-Type: application/json
> Content-Length: 43
> Server: Jetty(9.1.5.v20140505)
> {
>   "errorMessage" : "HTTP 404 Not Found"
> }
> The following data is returned for the same rest api in previous drill version:
> curl -X GET -i http://<ip>:8047/stats.json
> HTTP/1.1 200 OK
> Content-Type: application/json
> Content-Length: 398
> Server: Jetty(9.1.5.v20140505)
> [ {
>   "name" : "Number of Drill Bits",
>   "value" : 1
> }, {
>   "name" : "Bit #0",
>   "value" : "abc.qa.lab initialized"
> }, {
>   "name" : "Data Port Address",
>   "value" : "abc.qa.lab:31012"
> }, {
>   "name" : "User Port Address",
>   "value" : "abc.qa.lab:31010"
> }, {
>   "name" : "Control Port Address",
>   "value" : "abc.qa.lab:31011"
> }, {
>   "name" : "Maximum Direct Memory",
>   "value" : 8589934592
> }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)