Repository: mesos-site Updated Branches: refs/heads/asf-site 69e3402d0 -> e074f8dd8
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/blog/feed.xml ---------------------------------------------------------------------- diff --git a/content/blog/feed.xml b/content/blog/feed.xml index 06ad105..8d5ce4a 100644 --- a/content/blog/feed.xml +++ b/content/blog/feed.xml @@ -168,7 +168,7 @@ To learn more about CSI work in Mesos, you can dig into the design document < </ul> -<p>If you are a user and would like to suggest some areas for performance improvement, please let us know by emailing <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#x6f;&#x3a;&#100;&#x65;&#118;&#64;&#97;&#112;&#97;&#99;&#x68;&#x65;&#46;&#x6d;&#x65;&#115;&#x6f;&#x73;&#46;&#x6f;&#114;&#103;">&#100;&#101;&#118;&#x40;&#x61;&#x70;&#97;&#x63;&#x68;&#x65;&#x2e;&#x6d;&#101;&#x73;&#x6f;&#x73;&#x2e;&#x6f;&#x72;&#x67;</a>.</p> +<p>If you are a user and would like to suggest some areas for performance improvement, please let us know by emailing <a href="&#109;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#x64;&#101;&#x76;&#x40;&#x61;&#x70;&#97;&#99;&#x68;&#101;&#x2e;&#x6d;&#101;&#115;&#111;&#x73;&#46;&#111;&#x72;&#x67;">&#100;&#x65;&#x76;&#x40;&#x61;&#112;&#x61;&#99;&#104;&#x65;&#x2e;&#109;&#101;&#x73;&#x6f;&#x73;&#46;&#x6f;&#x72;&#103;</a>.</p> </content> </entry> http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/blog/performance-working-group-progress-report/index.html ---------------------------------------------------------------------- diff --git a/content/blog/performance-working-group-progress-report/index.html b/content/blog/performance-working-group-progress-report/index.html index b526292..e965294 100644 --- a/content/blog/performance-working-group-progress-report/index.html +++ b/content/blog/performance-working-group-progress-report/index.html @@ -248,7 +248,7 @@ </ul> -<p>If you are a user and would like to suggest some areas for performance improvement, please let us know by emailing <a href="mailto:dev@apache.mesos.org">dev@apache.mesos.org</a>.</p> +<p>If you are a user and would like to suggest some areas for performance improvement, please let us know by emailing <a href="mailto:dev@apache.mesos.org">dev@apache.mesos.org</a>.</p> </div> </div> http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/documentation/latest/operator-http-api/index.html ---------------------------------------------------------------------- diff --git a/content/documentation/latest/operator-http-api/index.html b/content/documentation/latest/operator-http-api/index.html index 633ceaf..2e13e0c 100644 --- a/content/documentation/latest/operator-http-api/index.html +++ b/content/documentation/latest/operator-http-api/index.html @@ -3207,6 +3207,11 @@ Content-Type: application/json <p>This call retrieves information about containers running on this agent. It contains ContainerStatus and ResourceStatistics along with some metadata of the containers.</p> +<p>There are two knobs in the request to control the types of the containers this +API will return: +* <code>show_nested</code>: Whether to show nested containers [default: false]. +* <code>show_standalone</code>: Whether to show standalone containers [default: false].</p> + <pre><code>GET_CONTAINERS HTTP Request (JSON): POST /api/v1 HTTP/1.1 @@ -3216,7 +3221,11 @@ Content-Type: application/json Accept: application/json { - "type": "GET_CONTAINERS" + "type": "GET_CONTAINERS", + "get_containers": { + "show_nested": true, + "show_standalone": false + } } http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/documentation/latest/upgrades/index.html ---------------------------------------------------------------------- diff --git a/content/documentation/latest/upgrades/index.html b/content/documentation/latest/upgrades/index.html index 69e7328..f6d3d59 100644 --- a/content/documentation/latest/upgrades/index.html +++ b/content/documentation/latest/upgrades/index.html @@ -186,6 +186,7 @@ R Removed feature/behavior <td style="word-wrap: break-word; overflow-wrap: break-word;"><!--Endpoints--> <ul style="padding-left:10px;"> + <li>A <a href="#1-5-x-get-containers">Allowed to view nested/standalone containers</a></li> </ul> </td> @@ -519,6 +520,19 @@ that caused a task to fail with a resource limitation reason.</li> </ul> +<p><a name="1-5-x-get-containers"></a></p> + +<ul> +<li>The agent operator API call <code>GET_CONTAINERS</code> has been updated to support listing nested or standalone containers. One can specify the following fields in the request: + +<ul> +<li><code>show_nested</code>: Whether to show nested containers.</li> +<li><code>show_standalone</code>: Whether to show standalone containers.</li> +</ul> +</li> +</ul> + + <h2>Upgrading from 1.3.x to 1.4.x</h2> <p><a name="1-4-x-ambient-capabilities"></a></p> http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/documentation/operator-http-api/index.html ---------------------------------------------------------------------- diff --git a/content/documentation/operator-http-api/index.html b/content/documentation/operator-http-api/index.html index a592b6c..fb8e5d0 100644 --- a/content/documentation/operator-http-api/index.html +++ b/content/documentation/operator-http-api/index.html @@ -3207,6 +3207,11 @@ Content-Type: application/json <p>This call retrieves information about containers running on this agent. It contains ContainerStatus and ResourceStatistics along with some metadata of the containers.</p> +<p>There are two knobs in the request to control the types of the containers this +API will return: +* <code>show_nested</code>: Whether to show nested containers [default: false]. +* <code>show_standalone</code>: Whether to show standalone containers [default: false].</p> + <pre><code>GET_CONTAINERS HTTP Request (JSON): POST /api/v1 HTTP/1.1 @@ -3216,7 +3221,11 @@ Content-Type: application/json Accept: application/json { - "type": "GET_CONTAINERS" + "type": "GET_CONTAINERS", + "get_containers": { + "show_nested": true, + "show_standalone": false + } } http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/documentation/upgrades/index.html ---------------------------------------------------------------------- diff --git a/content/documentation/upgrades/index.html b/content/documentation/upgrades/index.html index a525e6e..2578ca3 100644 --- a/content/documentation/upgrades/index.html +++ b/content/documentation/upgrades/index.html @@ -186,6 +186,7 @@ R Removed feature/behavior <td style="word-wrap: break-word; overflow-wrap: break-word;"><!--Endpoints--> <ul style="padding-left:10px;"> + <li>A <a href="#1-5-x-get-containers">Allowed to view nested/standalone containers</a></li> </ul> </td> @@ -519,6 +520,19 @@ that caused a task to fail with a resource limitation reason.</li> </ul> +<p><a name="1-5-x-get-containers"></a></p> + +<ul> +<li>The agent operator API call <code>GET_CONTAINERS</code> has been updated to support listing nested or standalone containers. One can specify the following fields in the request: + +<ul> +<li><code>show_nested</code>: Whether to show nested containers.</li> +<li><code>show_standalone</code>: Whether to show standalone containers.</li> +</ul> +</li> +</ul> + + <h2>Upgrading from 1.3.x to 1.4.x</h2> <p><a name="1-4-x-ambient-capabilities"></a></p>
