-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improvements to OpenTelemetry metrics
- Loading branch information
Showing
13 changed files
with
357 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# OpenTelemetry | ||
|
||
This SDK produces [metrics](https://opentelemetry.io/docs/concepts/signals/metrics/) using [OpenTelemetry](https://opentelemetry.io/) that allow you to view data such as request timings. These metrics also include attributes for the model and store ID, as well as the API called to allow you to build reporting. | ||
|
||
When an OpenTelemetry SDK instance is configured, the metrics will be exported and sent to the collector configured as part of your applications configuration. If you are not using OpenTelemetry, the metric functionality is a no-op and the events are never sent. | ||
|
||
In cases when metrics events are sent, they will not be viewable outside of infrastructure configured in your application, and are never available to the OpenFGA team or contributors. | ||
|
||
## Metrics | ||
|
||
### Supported Metrics | ||
|
||
| Metric Name | Type | Description | | ||
| --------------------------------- | --------- | ------------------------------------------------------------------------------------ | | ||
| `fga-client.request.duration` | Histogram | The total request time for FGA requests | | ||
| `fga-client.query.duration` | Histogram | The amount of time the FGA server took to internally process nd evaluate the request | | ||
| ` fga-client.credentials.request` | Counter | The total number of times a new token was requested when using ClientCredentials | | ||
|
||
### Supported attributes | ||
|
||
| Attribute Name | Type | Description | | ||
| ------------------------------ | -------- | ----------------------------------------------------------------------------------------------------------------------- | | ||
| `fga-client.response.model_id` | `string` | The authorization model ID that the FGA server used | | ||
| `fga-client.request.method` | `string` | The FGA method/action that was performed (e.g. `check`, `listObjects`, ...) in camelCase | | ||
| `fga-client.request.store_id` | `string` | The store ID that was sent as part of the request | | ||
| `fga-client.request.model_id` | `string` | The authorization model ID that was sent as part of the request, if any | | ||
| `fga-client.request.client_id` | `string` | The client ID associated with the request, if any | | ||
| `fga-client.user` | `string` | The user that is associated with the action of the request for check and list objects | | ||
| `fga-client.request.retries` | `int` | The number of retries attempted (starting from 1 for the original request). Deprecated, use `http.request.resend_count` | | ||
| `http.request.resend_count` | `int` | The number of retries attempted (starting from 1 for the original request) | | ||
| `http.status_code` | `int` | The status code of the response. Deprecated, use `http.response.status_code` | | ||
| `http.response.status_code` | `int` | The status code of the response | | ||
| `http.method` | `string` | The HTTP method for the request. Deprecated, use `http.request.method` | | ||
| `http.request.method` | `string` | The HTTP method for the request | | ||
| `http.host` | `string` | Host identifier of the origin the request was sent to | | ||
| `url.scheme` | `string` | HTTP Scheme of the request (`http`/`https`) | | ||
| `url.full` | `string` | Full URL of the request | | ||
| `user_agent.original` | `string` | User Agent used in the query | | ||
| `http.client.request.duration` | `int` | The total request time for FGA requests | | ||
| `http.server.request.duration` | `int` | The amount of time the FGA server took to internally process nd evaluate the request | | ||
|
||
## Example | ||
|
||
There is an [example project](https://github.com/openfga/java-sdk/blob/main/example/opentelemetry) that provides some guidance on how to configure OpenTelemetry available in the examples directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.