mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
cc3fc18076
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
91 lines
1.8 KiB
Markdown
91 lines
1.8 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "DataRequestInfo"
|
|
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## DataRequestInfo interface
|
|
|
|
Describes the data request information passed as the meta analytics payload.
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface DataRequestInfo extends Partial<DashboardInfo>
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { DataRequestInfo } from '@grafana/runtime';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [dataSize](#datasize-property) | <code>number</code> | |
|
|
| [datasourceId](#datasourceid-property) | <code>number</code> | |
|
|
| [datasourceName](#datasourcename-property) | <code>string</code> | |
|
|
| [duration](#duration-property) | <code>number</code> | |
|
|
| [error](#error-property) | <code>string</code> | |
|
|
| [panelId](#panelid-property) | <code>number</code> | |
|
|
| [panelName](#panelname-property) | <code>string</code> | |
|
|
|
|
### dataSize property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
dataSize?: number;
|
|
```
|
|
|
|
### datasourceId property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
datasourceId?: number;
|
|
```
|
|
|
|
### datasourceName property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
datasourceName: string;
|
|
```
|
|
|
|
### duration property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
duration: number;
|
|
```
|
|
|
|
### error property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
error?: string;
|
|
```
|
|
|
|
### panelId property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
panelId?: number;
|
|
```
|
|
|
|
### panelName property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
panelName?: string;
|
|
```
|