|
@@ -1,29 +0,0 @@
|
|
|
-/*
|
|
|
- * Copyright The OpenTelemetry Authors
|
|
|
- * SPDX-License-Identifier: Apache-2.0
|
|
|
- */
|
|
|
-
|
|
|
-package io.opentelemetry.instrumentation.api.instrumenter;
|
|
|
-
|
|
|
-import java.time.Instant;
|
|
|
-import javax.annotation.Nullable;
|
|
|
-
|
|
|
-/**
|
|
|
- * Extractor of the start and end times of request processing.
|
|
|
- *
|
|
|
- * <p>Note: if metrics are generated by the {@link Instrumenter}, the start and end times from the
|
|
|
- * {@link TimeExtractor} will be used to generate any duration metrics, but the internal metric
|
|
|
- * timestamp (when it occurred) will always be stamped with "now" when the metric is recorded (i.e.
|
|
|
- * there is no way to back date a metric recording).
|
|
|
- *
|
|
|
- * @deprecated Setting operation start and end times is not currently supported.
|
|
|
- */
|
|
|
-@Deprecated
|
|
|
-public interface TimeExtractor<REQUEST, RESPONSE> {
|
|
|
-
|
|
|
- /** Returns the timestamp marking the start of the request processing. */
|
|
|
- Instant extractStartTime(REQUEST request);
|
|
|
-
|
|
|
- /** Returns the timestamp marking the end of the request processing. */
|
|
|
- Instant extractEndTime(REQUEST request, @Nullable RESPONSE response, @Nullable Throwable error);
|
|
|
-}
|