mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
Explore: Do not send explicit maxDataPoints for logs. (#19235)
This commit is contained in:
parent
bb0a438705
commit
f203e82b40
@ -466,8 +466,9 @@ export function runQueries(exploreId: ExploreId): ThunkResult<void> {
|
||||
|
||||
const queryOptions = {
|
||||
minInterval,
|
||||
// This is used for logs streaming for buffer size.
|
||||
maxDataPoints: mode === ExploreMode.Logs ? 1000 : containerWidth,
|
||||
// This is used for logs streaming for buffer size, with undefined it falls back to datasource config if it
|
||||
// supports that.
|
||||
maxDataPoints: mode === ExploreMode.Logs ? undefined : containerWidth,
|
||||
live,
|
||||
showingGraph,
|
||||
showingTable,
|
||||
|
Loading…
Reference in New Issue
Block a user