Conversation
Deploying localstack-docs with
|
| Latest commit: |
c4de710
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://5d29b152.localstack-docs.pages.dev |
| Branch Preview URL: | https://harshmishra-doc-83.localstack-docs.pages.dev |
|
Thanks for the article @HarshCasper. Please find below the sections to add at the end of the article before the FeaturesThe emulator includes the following core capabilities:
LimitationsThe current version of the emulator does not support the following:
The following Azure-native features are currently unavailable in the emulator:
SamplesExplore the following samples to get started with Service Bus on LocalStack: |
paolosalvatori
left a comment
There was a problem hiding this comment.
Thanks @HarshCasper, the article looks solid. Please see my feedback and a few suggested additions in the comments below. Reach out to me and @bblommers once those are addressed, and we’ll get this approved right away.
| Get and list queues: | ||
|
|
||
| ```bash | ||
| azlocal servicebus queue show \ |
There was a problem hiding this comment.
I suggest you add the JSON returned by the the show and list commands:
{
"accessedAt": "2026-03-18T10:13:18.3906198Z",
"autoDeleteOnIdle": "P10675199DT2H48M5.4775807S",
"countDetails": {
"activeMessageCount": 0,
"deadLetterMessageCount": 0,
"scheduledMessageCount": 0,
"transferDeadLetterMessageCount": 0,
"transferMessageCount": 0
},
...
"name": "input",
...
"status": "Active",
"type": "Microsoft.ServiceBus/namespaces/queues",
...
}and
[
{
"accessedAt": "2026-03-18T10:14:44.3808099Z",
"autoDeleteOnIdle": "P10675199DT2H48M5.4775807S",
"countDetails": {
"activeMessageCount": 0,
"deadLetterMessageCount": 0,
"scheduledMessageCount": 0,
"transferDeadLetterMessageCount": 0,
"transferMessageCount": 0
},
...
"name": "input",
...
"status": "Active",
"type": "Microsoft.ServiceBus/namespaces/queues",
...
},
{
"accessedAt": "2026-03-18T10:14:44.3808099Z",
"autoDeleteOnIdle": "P10675199DT2H48M5.4775807S",
"countDetails": {
"activeMessageCount": 0,
"deadLetterMessageCount": 0,
"scheduledMessageCount": 0,
"transferDeadLetterMessageCount": 0,
"transferMessageCount": 0
},
...
"name": "output",
...
"status": "Active",
"type": "Microsoft.ServiceBus/namespaces/queues",
...
}
]Please add a note to remark that the information under countDetails element may not be accurate. @bblommers for visibility
| Get and list subscriptions: | ||
|
|
||
| ```bash | ||
| azlocal servicebus topic subscription show \ |
There was a problem hiding this comment.
Same as above for the azlocal servicebus queue show and azlocal servicebus queue list commands. Thanks.
Fixes DOC-83