This SDK produces metrics using OpenTelemetry 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.
| Metric Name | Type | Enabled by Default | Description |
|---|---|---|---|
fga-client.request.duration |
Histogram | Yes | Total request time for FGA requests, in milliseconds |
fga-client.query.duration |
Histogram | Yes | Time taken by the FGA server to process and evaluate the request, in milliseconds |
fga-client.credentials.request |
Counter | Yes | Total number of new token requests initiated using the Client Credentials flow |
| Attribute Name | Type | Enabled by Default | Description |
|---|---|---|---|
fga-client.request.client_id |
string | Yes | Client ID associated with the request, if any |
fga-client.request.method |
string | Yes | FGA method/action that was performed (e.g., Check, ListObjects) in TitleCase |
fga-client.request.model_id |
string | Yes | Authorization model ID that was sent as part of the request, if any |
fga-client.request.store_id |
string | Yes | Store ID that was sent as part of the request |
fga-client.request.batch_check_size |
int | No | Number of objects in the batch check request |
fga-client.response.model_id |
string | Yes | Authorization model ID that the FGA server used |
fga-client.user |
string | No | User associated with the action of the request for check and list users |
http.host |
string | Yes | Host identifier of the origin the request was sent to |
http.request.method |
string | Yes | HTTP method for the request |
http.request.resend_count |
int | Yes | Number of retries attempted, if any |
http.response.status_code |
int | Yes | Status code of the response (e.g., 200 for success) |
url.scheme |
string | Yes | HTTP scheme of the request (http/https) |
url.full |
string | Yes | Full URL of the request |
user_agent.original |
string | Yes | User Agent used in the query |
Please see the OpenTelemetry documentation for how to configure the SDK for your application. Below is an example of how to configure the SDK to use OpenTelemetry.
In most cases you can use the io.opentelemetry.sdk.autoconfigure.AutoConfiguredOpenTelemetrySdk package to automatically configure OpenTelemetry.
However, if you prefer to configure OpenTelemetry manually, you can use the io.opentelemetry.sdk.OpenTelemetrySdk package to configure OpenTelemetry manually, as shown below.
// Import the OpenFGA SDK
import dev.openfga.sdk.api.client.OpenFgaClient;
import dev.openfga.sdk.api.configuration.ClientConfiguration;
// Import the OpenTelemetry SDK
import io.opentelemetry.api.OpenTelemetry;
import io.opentelemetry.sdk.OpenTelemetrySdk;
import io.opentelemetry.sdk.metrics.SdkMeterProvider;
import io.opentelemetry.exporter.otlp.metrics.OtlpGrpcMetricExporter;
public class Example {
private OpenTelemetry otel;
public static void main(String[] args) throws Exception {
ClientConfiguration config = new ClientConfiguration()
.apiUrl(System.getenv("FGA_API_URL"))
.storeId(System.getenv("FGA_STORE_ID"))
.authorizationModelId(System.getenv("FGA_MODEL_ID"));
OpenFgaClient fgaClient = new OpenFgaClient(config);
configureOpenTelemetry();
// Your application logic here ...
}
public static void configureOpenTelemetry() {
Resource resource =
Resource.getDefault().toBuilder()
.put(ServiceAttributes.SERVICE_NAME, "example-app")
.put(ServiceAttributes.SERVICE_VERSION, "0.1.0")
.build();
SdkMeterProvider sdkMeterProvider = SdkMeterProvider.builder()
.registerMetricReader(PeriodicMetricReader.builder(OtlpGrpcMetricExporter.builder().build()).build())
.setResource(resource)
.build();
OpenTelemetry openTelemetry = OpenTelemetrySdk.builder()
.setMeterProvider(sdkMeterProvider)
.buildAndRegisterGlobal();
otel = openTelemetry;
}
}The SDK includes a default configuration for metrics. You can override these defaults by providing your own TelemetryConfiguration instance.
// Import the OpenFGA SDK
import dev.openfga.sdk.api.client.ApiClient;
import dev.openfga.sdk.api.configuration.ClientConfiguration;
import dev.openfga.sdk.api.configuration.TelemetryConfiguration;
import dev.openfga.sdk.telemetry.Attribute;
import dev.openfga.sdk.telemetry.Attributes;
import dev.openfga.sdk.telemetry.Counters;
import dev.openfga.sdk.telemetry.Histograms;
import dev.openfga.sdk.telemetry.Metric;
// Import the OpenTelemetry SDK
import io.opentelemetry.api.OpenTelemetry;
import io.opentelemetry.sdk.OpenTelemetrySdk;
import io.opentelemetry.sdk.metrics.SdkMeterProvider;
import io.opentelemetry.exporter.otlp.metrics.OtlpGrpcMetricExporter;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
public class Example {
private OpenTelemetry otel;
public static void main(String[] args) {
ClientConfiguration config = new ClientConfiguration()
.apiUrl(System.getenv("FGA_API_URL"))
.storeId(System.getenv("FGA_STORE_ID"))
.authorizationModelId(System.getenv("FGA_MODEL_ID"))
.telemetryConfiguration(buildOpenTelemetryConfiguration()); // Supply your custom TelemetryConfiguration
OpenFgaClient fgaClient = new OpenFgaClient(config);
configureOpenTelemetry();
// Your application logic here ...
}
public static TelemetryConfiguration buildOpenTelemetryConfiguration() {
Map<Attribute, Optional<Object>> attributes = new HashMap<>();
attributes.put(Attributes.FGA_CLIENT_REQUEST_CLIENT_ID, Optional.empty());
attributes.put(Attributes.FGA_CLIENT_REQUEST_METHOD, Optional.empty());
attributes.put(Attributes.FGA_CLIENT_REQUEST_MODEL_ID, Optional.empty());
attributes.put(Attributes.FGA_CLIENT_REQUEST_STORE_ID, Optional.empty());
attributes.put(Attributes.FGA_CLIENT_RESPONSE_MODEL_ID, Optional.empty());
attributes.put(Attributes.HTTP_HOST, Optional.empty());
attributes.put(Attributes.HTTP_REQUEST_METHOD, Optional.empty());
attributes.put(Attributes.HTTP_REQUEST_RESEND_COUNT, Optional.empty());
attributes.put(Attributes.HTTP_RESPONSE_STATUS_CODE, Optional.empty());
attributes.put(Attributes.URL_FULL, Optional.empty());
attributes.put(Attributes.URL_SCHEME, Optional.empty());
attributes.put(Attributes.USER_AGENT, Optional.empty());
Map<Metric, Map<Attribute, Optional<Object>>> metrics = new HashMap<>();
metrics.put(Counters.CREDENTIALS_REQUEST, attributes);
metrics.put(Histograms.QUERY_DURATION, attributes);
metrics.put(Histograms.REQUEST_DURATION, attributes);
return new TelemetryConfiguration(metrics);
}
public static void configureOpenTelemetry() {
Resource resource =
Resource.getDefault().toBuilder()
.put(ServiceAttributes.SERVICE_NAME, "example-app")
.put(ServiceAttributes.SERVICE_VERSION, "0.1.0")
.build();
SdkMeterProvider sdkMeterProvider = SdkMeterProvider.builder()
.registerMetricReader(PeriodicMetricReader.builder(OtlpGrpcMetricExporter.builder().build()).build())
.setResource(resource)
.build();
OpenTelemetry openTelemetry = OpenTelemetrySdk.builder()
.setMeterProvider(sdkMeterProvider)
.buildAndRegisterGlobal();
otel = openTelemetry;
}
}