(ctx context.Context, arg database.InsertAuditLogParams)
| 3755 | } |
| 3756 | |
| 3757 | func (m queryMetricsStore) InsertAuditLog(ctx context.Context, arg database.InsertAuditLogParams) (database.AuditLog, error) { |
| 3758 | start := time.Now() |
| 3759 | r0, r1 := m.s.InsertAuditLog(ctx, arg) |
| 3760 | m.queryLatencies.WithLabelValues("InsertAuditLog").Observe(time.Since(start).Seconds()) |
| 3761 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "InsertAuditLog").Inc() |
| 3762 | return r0, r1 |
| 3763 | } |
| 3764 | |
| 3765 | func (m queryMetricsStore) InsertBoundaryLog(ctx context.Context, arg database.InsertBoundaryLogParams) (database.BoundaryLog, error) { |
| 3766 | start := time.Now() |
nothing calls this directly
no test coverage detected