Graphite: Fix test data source query options (#26906)

pull/26094/head
Zoltán Bedi 5 years ago committed by GitHub
parent 1dd5b58e95
commit 02e4c2bb9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      public/app/plugins/datasource/graphite/datasource.ts

@ -593,6 +593,9 @@ export class GraphiteDatasource extends DataSourceApi<GraphiteQuery, GraphiteOpt
const query = ({
panelId: 3,
rangeRaw: { from: 'now-1h', to: 'now' },
range: {
raw: { from: 'now-1h', to: 'now' },
},
targets: [{ target: 'constantLine(100)' }],
maxDataPoints: 300,
} as unknown) as DataQueryRequest<GraphiteQuery>;

Loading…
Cancel
Save