Chore: Add more metrics to annotation service to see its usage (#112651)

This commit is contained in:
Serge Zaitsev
2025-10-23 09:48:07 +02:00
committed by GitHub
parent 2e1704b56f
commit f3eabbf588
5 changed files with 90 additions and 12 deletions
@@ -15,7 +15,7 @@ type CleanupServiceImpl struct {
func ProvideCleanupService(db db.DB, cfg *setting.Cfg) *CleanupServiceImpl {
return &CleanupServiceImpl{
store: NewXormStore(cfg, log.New("annotations"), db, nil),
store: NewXormStore(cfg, log.New("annotations"), db, nil, nil),
}
}