-
-
Notifications
You must be signed in to change notification settings - Fork 5
feat: Add queue name, description, and op models #446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b06eabd
7730e15
34d88d4
dfbc320
d1c3f36
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "brief": "Queue", | ||
| "operations": [ | ||
| { | ||
| "name": "Queue", | ||
| "brief": "Operations that represent working with message queues, including publishing, receiving, processing, and settling messages.", | ||
| "ops": ["queue", "queue.publish", "queue.create", "queue.receive", "queue.process", "queue.settle"], | ||
| "templates": ["{{messaging.destination.name}}"], | ||
| "examples": ["order-events"] | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| { | ||
| "name": "messaging", | ||
| "description": "Messaging related spans represent operations on topics in streaming data systems and queues, such as producing and consuming messages in Kafka, RabbitMQ.", | ||
| "fields": [ | ||
| { | ||
| "name": "queue", | ||
| "description": "A general queue operation." | ||
| }, | ||
| { | ||
| "name": "queue.publish", | ||
| "description": "Publishing a message to a queue." | ||
| }, | ||
| { | ||
| "name": "queue.create", | ||
| "description": "Creating a queue or a message for later publishing." | ||
| }, | ||
| { | ||
| "name": "queue.receive", | ||
| "description": "Receiving a message from a queue." | ||
| }, | ||
| { | ||
| "name": "queue.process", | ||
| "description": "Processing a message from a queue." | ||
| }, | ||
| { | ||
| "name": "queue.settle", | ||
| "description": "Settling a message, e.g. acknowledging or rejecting it." | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Queue ops lack name modelMedium Severity This change registers Additional Locations (1)Reviewed by Cursor Bugbot for commit d1c3f36. Configure here. |
||
| } | ||
| ] | ||
| } | ||


Uh oh!
There was an error while loading. Please reload this page.