Dhilip Kumar S created MESOS-5873:
-------------------------------------

             Summary: 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/

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"
        }]
}





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

Reply via email to