(t *testing.T, expectedValue string, metric string)
| 379 | } |
| 380 | |
| 381 | func printMetricValue(t *testing.T, expectedValue string, metric string) e2e.MetricsOption { |
| 382 | return func(opts *e2e.MetricsOptions) { |
| 383 | opts.GetValue = printValues(t, expectedValue, metric) |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | func setupBackendWithEndpoint(t testing.TB, cfg *tempodb.Config, endpoint string) tempodb.Writer { |
| 388 | _, w := setupBackendReaderWriterWithEndpoint(t, cfg, endpoint) |
no test coverage detected