Skip to content

Commit

Permalink
Documented error metrics (#597)
Browse files Browse the repository at this point in the history
* Documented error metrics

* tweak
  • Loading branch information
deepakprabhakara authored Dec 26, 2024
1 parent 7136845 commit 4ec6616
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions docs/jackson/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,20 @@ Please check the [Environment Variables](./deploy/env-variables.md#opentelemetry

## Metrics

| Name | Description | Type |
| --------------------------- | ---------------------------------------- | ----- |
| `jackson.connection.create` | Number of SSO Connection create requests | Count |
| `jackson.connection.get` | Number of SSO Connection get requests | Count |
| `jackson.connection.delete` | Number of SSO Connection delete requests | Count |
| `jackson.oauth.authorize` | Number of oauth authorize requests | Count |
| `jackson.oauth.token` | Number of oauth token requests | Count |
| `jackson.oauth.userinfo` | Number of oauth user info requests | Count |
| Name | Description | Type | Tags |
| --------------------------- | ---------------------------------------- | ----- | ---- |
| `jackson.connection.create` | Number of SSO Connection create requests | Count | ---- |
| `jackson.connection.get` | Number of SSO Connection get requests | Count | ---- |
| `jackson.connection.delete` | Number of SSO Connection delete requests | Count | ---- |
| `jackson.oauth.authorize` | Number of oauth authorize requests | Count | ---- |
| `jackson.oauth.token` | Number of oauth token requests | Count | ---- |
| `jackson.oauth.userinfo` | Number of oauth user info requests | Count | ---- |

From `v1.35.1` the following additional metrics are available:

| Name | Description | Type | Tags |
| --------------------------- | ---------------------------------------- | ----- | ---- |
| `jackson.oauth.authorize.error` | Number of oauth authorize errors | Count | **protocol**: `saml`,`oidc`,`saml-federated`,`oidc-federated` ; **login_type**: `sp-initiated`,`idp-initiated` |
| `jackson.oauth.token.error` | Number of oauth token errors | Count | **protocol**: `saml`,`oidc`,`saml-federated`,`oidc-federated` ; **login_type**: `sp-initiated`,`idp-initiated` |
| `jackson.oauth.userinfo.error` | Number of oauth user info errors | Count | **protocol**: `saml`,`oidc`,`saml-federated`,`oidc-federated` ; **login_type**: `sp-initiated`,`idp-initiated` |
| `jackson.oauth.response.error` | Number of oauth response errors | Count | **protocol**: `saml`,`oidc`,`saml-federated`,`oidc-federated` ; **login_type**: `sp-initiated`,`idp-initiated` |

0 comments on commit 4ec6616

Please sign in to comment.