Skip to content

Commit

Permalink
[hotfix][rest][docs] Regenerate REST documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SteNicholas authored and zentol committed May 13, 2020
1 parent 83d82c1 commit 1e228c8
Showing 1 changed file with 130 additions and 2 deletions.
132 changes: 130 additions & 2 deletions docs/_includes/generated/rest_v1_dispatcher.html
Original file line number Diff line number Diff line change
Expand Up @@ -613,8 +613,8 @@
</tr>
<tr>
<td colspan="2">
<button data-toggle="collapse" data-target="#1311035100">Response</button>
<div id="1311035100" class="collapse">
<button data-toggle="collapse" data-target="#1313426502">Response</button>
<div id="1313426502" class="collapse">
<pre>
<code>
{
Expand Down Expand Up @@ -4081,6 +4081,10 @@
"dataPort" : {
"type" : "integer"
},
"freeResource" : {
"type" : "object",
"$ref" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:ResourceProfileInfo"
},
"freeSlots" : {
"type" : "integer"
},
Expand Down Expand Up @@ -4113,6 +4117,33 @@
},
"timeSinceLastHeartbeat" : {
"type" : "integer"
},
"totalResource" : {
"type" : "object",
"id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:ResourceProfileInfo",
"properties" : {
"cpuCores" : {
"type" : "number"
},
"extendedResources" : {
"type" : "object",
"additionalProperties" : {
"type" : "number"
}
},
"managedMemory" : {
"type" : "integer"
},
"networkMemory" : {
"type" : "integer"
},
"taskHeapMemory" : {
"type" : "integer"
},
"taskOffHeapMemory" : {
"type" : "integer"
}
}
}
}
}
Expand Down Expand Up @@ -4221,6 +4252,10 @@
"dataPort" : {
"type" : "integer"
},
"freeResource" : {
"type" : "object",
"$ref" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:ResourceProfileInfo"
},
"freeSlots" : {
"type" : "integer"
},
Expand Down Expand Up @@ -4319,6 +4354,33 @@
},
"timeSinceLastHeartbeat" : {
"type" : "integer"
},
"totalResource" : {
"type" : "object",
"id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:ResourceProfileInfo",
"properties" : {
"cpuCores" : {
"type" : "number"
},
"extendedResources" : {
"type" : "object",
"additionalProperties" : {
"type" : "number"
}
},
"managedMemory" : {
"type" : "integer"
},
"networkMemory" : {
"type" : "integer"
},
"taskHeapMemory" : {
"type" : "integer"
},
"taskOffHeapMemory" : {
"type" : "integer"
}
}
}
}
} </code>
Expand Down Expand Up @@ -4452,3 +4514,69 @@
</tr>
</tbody>
</table>
<table class="table table-bordered">
<tbody>
<tr>
<td class="text-left" colspan="2"><h5><strong>/taskmanagers/:taskmanagerid/thread-dump</strong></h5></td>
</tr>
<tr>
<td class="text-left" style="width: 20%">Verb: <code>GET</code></td>
<td class="text-left">Response code: <code>200 OK</code></td>
</tr>
<tr>
<td colspan="2">Returns the thread dump of the requested TaskManager.</td>
</tr>
<tr>
<td colspan="2">Path parameters</td>
</tr>
<tr>
<td colspan="2">
<ul>
<li><code>taskmanagerid</code> - 32-character hexadecimal string that identifies a task manager.</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">
<button data-toggle="collapse" data-target="#451701794">Request</button>
<div id="451701794" class="collapse">
<pre>
<code>
{} </code>
</pre>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<button data-toggle="collapse" data-target="#1465230704">Response</button>
<div id="1465230704" class="collapse">
<pre>
<code>
{
"type" : "object",
"id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:taskmanager:ThreadDumpInfo",
"properties" : {
"threadInfos" : {
"type" : "array",
"items" : {
"type" : "object",
"id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:taskmanager:ThreadDumpInfo:ThreadInfo",
"properties" : {
"stringifiedThreadInfo" : {
"type" : "string"
},
"threadName" : {
"type" : "string"
}
}
}
}
}
} </code>
</pre>
</div>
</td>
</tr>
</tbody>
</table>

0 comments on commit 1e228c8

Please sign in to comment.