(ctx context.Context, arg database.InsertChatDebugRunParams)
| 3787 | } |
| 3788 | |
| 3789 | func (m queryMetricsStore) InsertChatDebugRun(ctx context.Context, arg database.InsertChatDebugRunParams) (database.ChatDebugRun, error) { |
| 3790 | start := time.Now() |
| 3791 | r0, r1 := m.s.InsertChatDebugRun(ctx, arg) |
| 3792 | m.queryLatencies.WithLabelValues("InsertChatDebugRun").Observe(time.Since(start).Seconds()) |
| 3793 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "InsertChatDebugRun").Inc() |
| 3794 | return r0, r1 |
| 3795 | } |
| 3796 | |
| 3797 | func (m queryMetricsStore) InsertChatDebugStep(ctx context.Context, arg database.InsertChatDebugStepParams) (database.ChatDebugStep, error) { |
| 3798 | start := time.Now() |
nothing calls this directly
no test coverage detected