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/runtime/datarequestinfo.md

91 lines
1.8 KiB

+++
# -----------------------------------------------------------------------
# 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;
```