You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Dhilip Kumar S (JIRA)" <ji...@apache.org> on 2016/07/20 21:13:20 UTC

[jira] [Created] (MESOS-5873) Quota Status REST api to respond with more information

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)