Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
6130afb8
Unverified
Commit
6130afb8
authored
1 year ago
by
Erik Johnston
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add response time metrics for introspection requests (#16131)
See #16119
parent
0aba4a4e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.d/16131.misc
+1
-0
1 addition, 0 deletions
changelog.d/16131.misc
synapse/api/auth/msc3861_delegated.py
+27
-7
27 additions, 7 deletions
synapse/api/auth/msc3861_delegated.py
with
28 additions
and
7 deletions
changelog.d/16131.misc
0 → 100644
+
1
−
0
View file @
6130afb8
Add response time metrics for introspection requests for delegated auth.
This diff is collapsed.
Click to expand it.
synapse/api/auth/msc3861_delegated.py
+
27
−
7
View file @
6130afb8
...
...
@@ -20,6 +20,7 @@ from authlib.oauth2.auth import encode_client_secret_basic, encode_client_secret
from
authlib.oauth2.rfc7523
import
ClientSecretJWT
,
PrivateKeyJWT
,
private_key_jwt_sign
from
authlib.oauth2.rfc7662
import
IntrospectionToken
from
authlib.oidc.discovery
import
OpenIDProviderMetadata
,
get_well_known_url
from
prometheus_client
import
Histogram
from
twisted.web.client
import
readBody
from
twisted.web.http_headers
import
Headers
...
...
@@ -46,6 +47,13 @@ if TYPE_CHECKING:
logger
=
logging
.
getLogger
(
__name__
)
introspection_response_timer
=
Histogram
(
"
synapse_api_auth_delegated_introspection_response
"
,
"
Time taken to get a response for an introspection request
"
,
[
"
code
"
],
)
# Scope as defined by MSC2967
# https://github.com/matrix-org/matrix-spec-proposals/pull/2967
SCOPE_MATRIX_API
=
"
urn:matrix:org.matrix.msc2967.client:api:*
"
...
...
@@ -190,14 +198,26 @@ class MSC3861DelegatedAuth(BaseAuth):
# Do the actual request
# We're not using the SimpleHttpClient util methods as we don't want to
# check the HTTP status code, and we do the body encoding ourselves.
response
=
await
self
.
_http_client
.
request
(
method
=
"
POST
"
,
uri
=
uri
,
data
=
body
.
encode
(
"
utf-8
"
),
headers
=
headers
,
)
resp_body
=
await
make_deferred_yieldable
(
readBody
(
response
))
start_time
=
self
.
_clock
.
time
()
try
:
response
=
await
self
.
_http_client
.
request
(
method
=
"
POST
"
,
uri
=
uri
,
data
=
body
.
encode
(
"
utf-8
"
),
headers
=
headers
,
)
resp_body
=
await
make_deferred_yieldable
(
readBody
(
response
))
except
Exception
:
end_time
=
self
.
_clock
.
time
()
introspection_response_timer
.
labels
(
"
ERR
"
).
observe
(
end_time
-
start_time
)
raise
end_time
=
self
.
_clock
.
time
()
introspection_response_timer
.
labels
(
response
.
code
).
observe
(
end_time
-
start_time
)
if
response
.
code
<
200
or
response
.
code
>=
300
:
raise
HttpResponseException
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment