Skip to content

Commit 0d4037d

Browse files
Merge pull request #8855 from rabbitmq/mergify/bp/v3.11.x/pr-8854
Document stream management plugin endpoints (backport #8844) (backport #8854)
2 parents 4cb2b99 + 059d8d4 commit 0d4037d

File tree

1 file changed

+123
-0
lines changed

1 file changed

+123
-0
lines changed

deps/rabbitmq_management/priv/www/api/index.html

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,6 +1167,129 @@ <h2>Reference</h2>
11671167
Hashes <code>plaintext-password</code> according to the currently configured password hashing algorithm.
11681168
</td>
11691169
</tr>
1170+
<tr>
1171+
<td>X</td>
1172+
<td></td>
1173+
<td></td>
1174+
<td></td>
1175+
<td class="path">/api/stream/connections</td>
1176+
<td>
1177+
A list of all open stream connections.
1178+
Use <a href="#pagination">pagination parameters</a> to filter connections.
1179+
<br />
1180+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1181+
</td>
1182+
</tr>
1183+
<tr>
1184+
<td>X</td>
1185+
<td></td>
1186+
<td></td>
1187+
<td></td>
1188+
<td class="path">/api/stream/connections/<i>vhost</i></td>
1189+
<td>
1190+
A list of all open stream connections in a specific virtual host.
1191+
<br />
1192+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1193+
</td>
1194+
</tr>
1195+
<tr>
1196+
<td>X</td>
1197+
<td></td>
1198+
<td>X</td>
1199+
<td></td>
1200+
<td class="path">/api/stream/connections/<i>vhost</i>/<i>name</i></td>
1201+
<td>
1202+
An individual stream connection.
1203+
DELETEing it will close the stream connection.
1204+
Optionally set the "X-Reason" header when DELETEing to provide a reason.
1205+
<br />
1206+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1207+
</td>
1208+
</tr>
1209+
<tr>
1210+
<td>X</td>
1211+
<td></td>
1212+
<td></td>
1213+
<td></td>
1214+
<td class="path">/api/stream/connections/<i>vhost</i>/<i>name</i>/publishers</td>
1215+
<td>
1216+
The list of publishers of a given stream connection.
1217+
<br />
1218+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1219+
</td>
1220+
</tr>
1221+
<tr>
1222+
<td>X</td>
1223+
<td></td>
1224+
<td></td>
1225+
<td></td>
1226+
<td class="path">/api/stream/connections/<i>vhost</i>/<i>name</i>/consumers</td>
1227+
<td>
1228+
The list of consumers of a given stream connection.
1229+
<br />
1230+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1231+
</td>
1232+
</tr>
1233+
<tr>
1234+
<td>X</td>
1235+
<td></td>
1236+
<td></td>
1237+
<td></td>
1238+
<td class="path">/api/stream/publishers</td>
1239+
<td>
1240+
The list of stream publishers.
1241+
<br />
1242+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1243+
</td>
1244+
</tr>
1245+
<tr>
1246+
<td>X</td>
1247+
<td></td>
1248+
<td></td>
1249+
<td></td>
1250+
<td class="path">/api/stream/publishers/<i>vhost</i></td>
1251+
<td>
1252+
The list of stream publishers in a specific virtual host.
1253+
<br />
1254+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1255+
</td>
1256+
</tr>
1257+
<tr>
1258+
<td>X</td>
1259+
<td></td>
1260+
<td></td>
1261+
<td></td>
1262+
<td class="path">/api/stream/publishers/<i>vhost</i>/<i>stream</i></td>
1263+
<td>
1264+
The list of stream publishers in a specific virtual host for a specific stream.
1265+
<br />
1266+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1267+
</td>
1268+
</tr>
1269+
<tr>
1270+
<td>X</td>
1271+
<td></td>
1272+
<td></td>
1273+
<td></td>
1274+
<td class="path">/api/stream/consumers</td>
1275+
<td>
1276+
The list of stream consumers.
1277+
<br />
1278+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1279+
</td>
1280+
</tr>
1281+
<tr>
1282+
<td>X</td>
1283+
<td></td>
1284+
<td></td>
1285+
<td></td>
1286+
<td class="path">/api/stream/consumers/<i>vhost</i></td>
1287+
<td>
1288+
The list of stream consumers in a specific virtual host.
1289+
<br />
1290+
Requires the <code>rabbitmq_stream_management</code> plugin to be enabled.
1291+
</td>
1292+
</tr>
11701293
</table>
11711294

11721295

0 commit comments

Comments
 (0)