You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
Apollo style tracing along with two levels of metrics based on them are currently configurable. Full tracing is based on the GraphQL java implementation, and can be enabled in the application.yml or application.properties file: the default value is false, with "metrics-only" being available. Metrics-only does not add the tracing extension to the response.
However even if I set the value to metrics-only the extensions object is included.
The only way to disable the "extensions" part of the reponse object is by disabling graphql.servlet.actuator-metrics: false all together which is not desirable as we wish to produce actuator metrics.
Expected behavior
When setting the config paramter graphql.servlet.tracing-enabled: metrics-only the response from the servlet should not include the "extensions" object.
If applicable, add screenshots to help explain your problem.
MacOS Sonoma
Java17
Intellij
Spring Boot 3.1.4
The text was updated successfully, but these errors were encountered:
Describe the bug
I am in the progress of upgrading to version 15 of the following dependency
When I do that I get an
extensions
object in my response like the one below:I would like to disable this part of the response as it is simply too much data for my clients to load every time. I am reading in the documentation here: https://github.com/graphql-java-kickstart/graphql-spring-boot#tracing-and-metrics
However even if I set the value to
metrics-only
the extensions object is included.The only way to disable the "extensions" part of the reponse object is by disabling
graphql.servlet.actuator-metrics: false
all together which is not desirable as we wish to produce actuator metrics.Expected behavior
When setting the config paramter
graphql.servlet.tracing-enabled: metrics-only
the response from the servlet should not include the "extensions" object.If applicable, add screenshots to help explain your problem.
MacOS Sonoma
Java17
Intellij
Spring Boot 3.1.4
The text was updated successfully, but these errors were encountered: