mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Tempo: Send the correct start time when making a TraceQL query (#59128)
This commit is contained in:
parent
5af9a511c0
commit
6d94fa6aa5
@ -184,7 +184,7 @@ export class TempoDatasource extends DataSourceWithBackend<TempoQuery, TempoJson
|
||||
this._request('/api/search', {
|
||||
q: targets.traceql[0].query,
|
||||
limit: options.targets[0].limit,
|
||||
start: 0, // Currently the API doesn't return traces when using the 'From' time selected in Explore
|
||||
start: options.range.from.unix(),
|
||||
end: options.range.to.unix(),
|
||||
}).pipe(
|
||||
map((response) => {
|
||||
|
Loading…
Reference in New Issue
Block a user