(ctx context.Context, arg database.UpsertAISeatStateParams)
| 5731 | } |
| 5732 | |
| 5733 | func (m queryMetricsStore) UpsertAISeatState(ctx context.Context, arg database.UpsertAISeatStateParams) (bool, error) { |
| 5734 | start := time.Now() |
| 5735 | r0, r1 := m.s.UpsertAISeatState(ctx, arg) |
| 5736 | m.queryLatencies.WithLabelValues("UpsertAISeatState").Observe(time.Since(start).Seconds()) |
| 5737 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "UpsertAISeatState").Inc() |
| 5738 | return r0, r1 |
| 5739 | } |
| 5740 | |
| 5741 | func (m queryMetricsStore) UpsertAnnouncementBanners(ctx context.Context, value string) error { |
| 5742 | start := time.Now() |
nothing calls this directly
no test coverage detected