2023-05-09 18:19:48 +01:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2024-04-11 10:46:18 +01:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2023-05-09 18:19:48 +01:00
|
|
|
|
|
|
|
package internal // import "go.opentelemetry.io/otel/sdk/internal"
|
|
|
|
|
2023-06-05 09:15:05 +01:00
|
|
|
import "time"
|
2023-05-09 18:19:48 +01:00
|
|
|
|
|
|
|
// MonotonicEndTime returns the end time at present
|
|
|
|
// but offset from start, monotonically.
|
|
|
|
//
|
|
|
|
// The monotonic clock is used in subtractions hence
|
|
|
|
// the duration since start added back to start gives
|
|
|
|
// end as a monotonic time.
|
|
|
|
// See https://golang.org/pkg/time/#hdr-Monotonic_Clocks
|
|
|
|
func MonotonicEndTime(start time.Time) time.Time {
|
|
|
|
return start.Add(time.Since(start))
|
|
|
|
}
|