(ctx context.Context, arg database.InsertDBCryptKeyParams)
| 3851 | } |
| 3852 | |
| 3853 | func (m queryMetricsStore) InsertDBCryptKey(ctx context.Context, arg database.InsertDBCryptKeyParams) error { |
| 3854 | start := time.Now() |
| 3855 | r0 := m.s.InsertDBCryptKey(ctx, arg) |
| 3856 | m.queryLatencies.WithLabelValues("InsertDBCryptKey").Observe(time.Since(start).Seconds()) |
| 3857 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "InsertDBCryptKey").Inc() |
| 3858 | return r0 |
| 3859 | } |
| 3860 | |
| 3861 | func (m queryMetricsStore) InsertDERPMeshKey(ctx context.Context, value string) error { |
| 3862 | start := time.Now() |
nothing calls this directly
no test coverage detected