confluentinc / confluentinc/vscode

Active Medusa streams displayed under ‘Medusa’ in local resources UI

Open
#2,704 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
34
Forks
17
Avg merge
1d 22h
Merged PRs (30d)
8

Description

Image

- 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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.