feat(op): add opentelemetry to token endpoint

This commit is contained in:
Tim Möhlmann 2023-09-01 11:28:24 +03:00
parent 5ade1cd9de
commit 257b5e73b1
13 changed files with 107 additions and 1 deletions

View file

@ -74,6 +74,9 @@ func (v *jwtProfileVerifier) CheckSubject(request *oidc.JWTTokenRequest) error {
//
// checks audience, exp, iat, signature and that issuer and sub are the same
func VerifyJWTAssertion(ctx context.Context, assertion string, v JWTProfileVerifier) (*oidc.JWTTokenRequest, error) {
ctx, span := tracer.Start(ctx, "VerifyJWTAssertion")
defer span.End()
request := new(oidc.JWTTokenRequest)
payload, err := oidc.ParseToken(assertion, request)
if err != nil {