Officially documented release

This commit is contained in:
2025-11-10 10:10:46 +11:00
parent 1bb7661f94
commit 4c58351635
23 changed files with 282 additions and 214 deletions

View File

@@ -2,6 +2,12 @@ package models
import "time"
// DBQueueLog is a model used to store metrics and information about a conversation's consumption within a queue.
// - Queue is the name of the queue that processed the conversation.
// - Start is the time that the queue consumer started processing the conversation.
// - End is the time that the queue consumer finished processing the conversation.
// - NextQueue is the name of the queue that the consumer attempted to forward the conversation ID into.
// - Result is a map of metadata about the conversation's time in the consumer, including any potential error messages.
type DBQueueLog struct {
Queue string `gorm:"primaryKey"`
ConversationId string `gorm:"primaryKey"`