[ 
https://issues.apache.org/jira/browse/MESOS-5873?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dhilip Kumar S updated MESOS-5873:
----------------------------------
    Description: 
The Status Rest API for Quota 

https://mesos.apache.org/documentation/latest/quota/

{code}
Currently responds with below json,

{
        "infos": [{
                "guarantee": [{
                        "name": "cpus",
                        "role": "*",
                        "scalar": {
                                "value": 10.0
                        },
                        "type": "SCALAR"
                }],
                "role": "test"
        }]
}
{code}


It will be more meaningful if the status also responds with additional 
information such as how much of the Quota is currently being satisfied. 
Something like below introducing a *'satisfied'* attribute in json response

{code}
{
        "infos": [{
                "guarantee": [{
                        "name": "cpus",
                        "role": "*",
                        "scalar": {
                                "value": 10.0,
                                "satisfied": 8.0
                        },
                        "type": "SCALAR"
                }],
                "role": "test"
        }]
}
{code}


  was:
The Status Rest API for Quota 

https://mesos.apache.org/documentation/latest/quota/

Currently responds with below json,

{
        "infos": [{
                "guarantee": [{
                        "name": "cpus",
                        "role": "*",
                        "scalar": {
                                "value": 10.0
                        },
                        "type": "SCALAR"
                }],
                "role": "test"
        }]
}

It will be more meaningful if the status also responds with additional 
information such as how much of the Quota is currently being satisfied. 
Something like below
{
        "infos": [{
                "guarantee": [{
                        "name": "cpus",
                        "role": "*",
                        "scalar": {
                                "value": 10.0,
                                "satisfied": 8.0
                        },
                        "type": "SCALAR"
                }],
                "role": "test"
        }]
}




> Quota Status REST api to respond with more information
> ------------------------------------------------------
>
>                 Key: MESOS-5873
>                 URL: https://issues.apache.org/jira/browse/MESOS-5873
>             Project: Mesos
>          Issue Type: Improvement
>          Components: HTTP API
>         Environment: https://mesos.apache.org/documentation/latest/quota/
>            Reporter: Dhilip Kumar S
>            Priority: Minor
>
> The Status Rest API for Quota 
> https://mesos.apache.org/documentation/latest/quota/
> {code}
> Currently responds with below json,
> {
>       "infos": [{
>               "guarantee": [{
>                       "name": "cpus",
>                       "role": "*",
>                       "scalar": {
>                               "value": 10.0
>                       },
>                       "type": "SCALAR"
>               }],
>               "role": "test"
>       }]
> }
> {code}
> It will be more meaningful if the status also responds with additional 
> information such as how much of the Quota is currently being satisfied. 
> Something like below introducing a *'satisfied'* attribute in json response
> {code}
> {
>       "infos": [{
>               "guarantee": [{
>                       "name": "cpus",
>                       "role": "*",
>                       "scalar": {
>                               "value": 10.0,
>                               "satisfied": 8.0
>                       },
>                       "type": "SCALAR"
>               }],
>               "role": "test"
>       }]
> }
> {code}



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

Reply via email to