2

Adopt Tabulator for the requests log

This commit is contained in:
2026-03-12 21:01:34 +01:00
parent c213054f82
commit 9273c0ae69
10 changed files with 433 additions and 339 deletions

View File

@@ -114,6 +114,10 @@ func (s *Service) ListEvents(ctx context.Context, since time.Time, limit int, op
return items, nil
}
func (s *Service) CountEvents(ctx context.Context, since time.Time, options model.EventListOptions) (int64, error) {
return s.store.CountEvents(ctx, since, options)
}
func (s *Service) ListSourceNames() []string {
if s == nil || s.cfg == nil || len(s.cfg.Sources) == 0 {
return nil