The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/data/dataqueryrequest.md

187 lines
3.4 KiB

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "DataQueryRequest"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## DataQueryRequest interface
<b>Signature</b>
```typescript
export interface DataQueryRequest<TQuery extends DataQuery = DataQuery>
```
<b>Import</b>
```typescript
import { DataQueryRequest } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [app](#app-property) | <code>CoreApp &#124; string</code> | |
| [cacheTimeout](#cachetimeout-property) | <code>string</code> | |
| [dashboardId](#dashboardid-property) | <code>number</code> | |
| [endTime](#endtime-property) | <code>number</code> | |
| [exploreMode](#exploremode-property) | <code>ExploreMode</code> | |
| [interval](#interval-property) | <code>string</code> | |
| [intervalMs](#intervalms-property) | <code>number</code> | |
| [maxDataPoints](#maxdatapoints-property) | <code>number</code> | |
| [panelId](#panelid-property) | <code>number</code> | |
| [range](#range-property) | <code>TimeRange</code> | |
| [rangeRaw](#rangeraw-property) | <code>RawTimeRange</code> | |
| [requestId](#requestid-property) | <code>string</code> | |
| [reverse](#reverse-property) | <code>boolean</code> | |
| [scopedVars](#scopedvars-property) | <code>ScopedVars</code> | |
| [startTime](#starttime-property) | <code>number</code> | |
| [targets](#targets-property) | <code>TQuery[]</code> | |
| [timeInfo](#timeinfo-property) | <code>string</code> | |
| [timezone](#timezone-property) | <code>string</code> | |
### app property
<b>Signature</b>
```typescript
app: CoreApp | string;
```
### cacheTimeout property
<b>Signature</b>
```typescript
cacheTimeout?: string;
```
### dashboardId property
<b>Signature</b>
```typescript
dashboardId: number;
```
### endTime property
<b>Signature</b>
```typescript
endTime?: number;
```
### exploreMode property
<b>Signature</b>
```typescript
exploreMode?: ExploreMode;
```
### interval property
<b>Signature</b>
```typescript
interval: string;
```
### intervalMs property
<b>Signature</b>
```typescript
intervalMs?: number;
```
### maxDataPoints property
<b>Signature</b>
```typescript
maxDataPoints?: number;
```
### panelId property
<b>Signature</b>
```typescript
panelId: number;
```
### range property
<b>Signature</b>
```typescript
range: TimeRange;
```
### rangeRaw property
<b>Signature</b>
```typescript
rangeRaw?: RawTimeRange;
```
### requestId property
<b>Signature</b>
```typescript
requestId: string;
```
### reverse property
<b>Signature</b>
```typescript
reverse?: boolean;
```
### scopedVars property
<b>Signature</b>
```typescript
scopedVars: ScopedVars;
```
### startTime property
<b>Signature</b>
```typescript
startTime: number;
```
### targets property
<b>Signature</b>
```typescript
targets: TQuery[];
```
### timeInfo property
<b>Signature</b>
```typescript
timeInfo?: string;
```
### timezone property
<b>Signature</b>
```typescript
timezone: string;
```