-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Open
Labels
Description
QueryInstantResponse
and QueryRangeResponse
will now have a "status" and "message" field in the response just like TraceByIDResponse. Please follow the same logic as the TraceByIDResponse and display a warning/error message using the message
field if the status
field is PARTIAL
.
The backend PR for this feature.
Example response:
{
"series": [],
"metrics": {
"completedJobs": 1
},
"status": "PARTIAL",
"message": "Response exceeds maximum series limit of 1000, a partial response is returned. Warning: the accuracy of each individual value is not guaranteed."
}
To do:
- Revert temporal fix added in Tempo: Temporarily skip new proto fields #103586 to skip new proto fields and use newly generated types
- Show in the UI when partial results are returned (cc @nadinevehling)