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
[Feature]: When ES stores trace information queried through traceID, it can bypass the limitation of the "max_span_age" parameter by querying based on the time range. #7508
My suggestion is to follow this: if no time is specified (or the default time range selected on the UI), use now - max_span_age~now. If the user enters a time range, use the time range to query. If the time range exceeds max span age, an error will occur. Alternatively, use startTime~startTime+max_span_age to calculate.
Problem
When ES is used as backend storage, querying trace information through traceID can only retrieve data within the period set by the "max_span_age" parameter?
If a time range is specified when querying, it can also narrow down the search ES index range. If only "max_span_age" is used to restrict, it may sometimes feel unfriendly.