@@ -81,7 +81,11 @@ func parseTenantQueueName(queueName string) (int64, string, error) {
81
81
82
82
// Returns the name of the underlying pqmq table
83
83
func buildTenantQueueTableName (tenantId int64 , queueName string ) string {
84
- safeQueueName := base64 .URLEncoding .EncodeToString ([]byte (queueName ))
84
+ // pgmq does not quote table names in its implementation,
85
+ // so table names are not case sensitive.
86
+ // It is possible for two table names to collide with the same
87
+ // case-insensitive base64 encoding.
88
+ safeQueueName := strings .ToLower (base64Encoder .EncodeToString ([]byte (queueName )))
85
89
return fmt .Sprintf ("pgmq.\" q_tnt_%x_%s\" " , uint64 (tenantId ), safeQueueName )
86
90
}
87
91
@@ -226,7 +230,35 @@ func (q *PGMQQueue) Peek(tenantId int64, queue string, messageId int64) *models.
226
230
}
227
231
228
232
func (q * PGMQQueue ) Stats (tenantId int64 , queue string ) models.QueueStats {
229
- stats := models.QueueStats {}
233
+ stats := models.QueueStats {
234
+ Counts : make (map [models.MessageStatus ]int ),
235
+ TotalMessages : 0 ,
236
+ }
237
+
238
+ table := buildTenantQueueTableName (tenantId , queue )
239
+ sql := fmt .Sprintf (`
240
+ SELECT
241
+ CASE
242
+ WHEN read_ct > 0 AND vt < CURRENT_TIMESTAMP THEN 2
243
+ ELSE 1
244
+ END AS s, count(*) FROM %s GROUP BY s
245
+ ` , table )
246
+ res := q .DB .Raw (sql )
247
+ rows , err := res .Rows ()
248
+
249
+ if err != nil {
250
+ return stats
251
+ }
252
+
253
+ for rows .Next () {
254
+ var statusType models.MessageStatus
255
+ var count int
256
+ rows .Scan (& statusType , & count )
257
+ stats .TotalMessages += count
258
+ stats .Counts [statusType ] = count
259
+ }
260
+ rows .Close ()
261
+
230
262
return stats
231
263
}
232
264
0 commit comments