SearchStreamingState🔗The state of the TraceQL streaming search queryDefinition🔗class SearchStreamingState(enum.StrEnum): """ The state of the TraceQL streaming search query """ PENDING = "pending" STREAMING = "streaming" DONE = "done" ERROR = "error"