mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-24 08:12:38 +02:00
37 lines
780 B
Go
37 lines
780 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
var timerSinceCtxKey = ctxKey("timerSince")
|
|
|
|
func setTimerSince(ctx context.Context) context.Context {
|
|
return context.WithValue(ctx, timerSinceCtxKey, time.Now())
|
|
}
|
|
|
|
func getTimerSince(ctx context.Context) time.Duration {
|
|
return time.Since(ctx.Value(timerSinceCtxKey).(time.Time))
|
|
}
|
|
|
|
func checkTimeout(ctx context.Context) {
|
|
select {
|
|
case <-ctx.Done():
|
|
d := getTimerSince(ctx)
|
|
|
|
if ctx.Err() != context.DeadlineExceeded {
|
|
panic(newError(499, fmt.Sprintf("Request was cancelled after %v", d), "Cancelled"))
|
|
}
|
|
|
|
sendTimeoutToDataDog(ctx, d)
|
|
sendTimeoutToNewRelic(ctx, d)
|
|
incrementPrometheusErrorsTotal("timeout")
|
|
|
|
panic(newError(503, fmt.Sprintf("Timeout after %v", d), "Timeout"))
|
|
default:
|
|
// Go ahead
|
|
}
|
|
}
|