(ctx context.Context, arg database.UpdateChatDebugRunParams)
| 4787 | } |
| 4788 | |
| 4789 | func (m queryMetricsStore) UpdateChatDebugRun(ctx context.Context, arg database.UpdateChatDebugRunParams) (database.ChatDebugRun, error) { |
| 4790 | start := time.Now() |
| 4791 | r0, r1 := m.s.UpdateChatDebugRun(ctx, arg) |
| 4792 | m.queryLatencies.WithLabelValues("UpdateChatDebugRun").Observe(time.Since(start).Seconds()) |
| 4793 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "UpdateChatDebugRun").Inc() |
| 4794 | return r0, r1 |
| 4795 | } |
| 4796 | |
| 4797 | func (m queryMetricsStore) UpdateChatDebugStep(ctx context.Context, arg database.UpdateChatDebugStepParams) (database.ChatDebugStep, error) { |
| 4798 | start := time.Now() |
nothing calls this directly
no test coverage detected