(ctx context.Context, arg database.InsertGitSSHKeyParams)
| 3891 | } |
| 3892 | |
| 3893 | func (m queryMetricsStore) InsertGitSSHKey(ctx context.Context, arg database.InsertGitSSHKeyParams) (database.GitSSHKey, error) { |
| 3894 | start := time.Now() |
| 3895 | r0, r1 := m.s.InsertGitSSHKey(ctx, arg) |
| 3896 | m.queryLatencies.WithLabelValues("InsertGitSSHKey").Observe(time.Since(start).Seconds()) |
| 3897 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "InsertGitSSHKey").Inc() |
| 3898 | return r0, r1 |
| 3899 | } |
| 3900 | |
| 3901 | func (m queryMetricsStore) InsertGroup(ctx context.Context, arg database.InsertGroupParams) (database.Group, error) { |
| 3902 | start := time.Now() |
nothing calls this directly
no test coverage detected