confluentinc / confluentinc/vscode
Active Medusa streams displayed under ‘Medusa’ in local resources UI
- Dominant language
- TypeScript
- Stars
- 34
- Forks
- 17
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 8
Description
- The tool tip for each stream should include the name of the events being streamed and to which topics
- The Medusa endpoint `GET /v1/streams` will be used to get any created streams, the response contains a list of StreamDetails Objects:
```
{
"metadata": {
"total_size": 2,
"self": "http://localhost:8082/v1/streams"
},
"api_version": "v1",
"data": [
{
"stream_id": "3b6edb10-8b11-42b7-b97b-04393729a1d4",
"tag": "customer",
"started": false,
"subscriptions": 0
},
{
"stream_id": "74c51704-b1a6-490e-bad9-0c60c4b18949",
"tag": "payments",
"started": false,
"subscriptions": 0
}
],
"kind": "StreamDetailsList"
}
```
- Each stream should be displayed via the ‘tag’ name in each StreamDetails object from the response.
Contributor guide
Assessment
This issue has not been assessed yet.