+++ # ----------------------------------------------------------------------- # 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. Signature ```typescript export interface DataRequestInfo extends Partial ``` Import ```typescript import { DataRequestInfo } from '@grafana/runtime'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [dataSize](#datasize-property) | number | | | [datasourceId](#datasourceid-property) | number | | | [datasourceName](#datasourcename-property) | string | | | [duration](#duration-property) | number | | | [error](#error-property) | string | | | [panelId](#panelid-property) | number | | | [panelName](#panelname-property) | string | | ### dataSize property Signature ```typescript dataSize?: number; ``` ### datasourceId property Signature ```typescript datasourceId?: number; ``` ### datasourceName property Signature ```typescript datasourceName: string; ``` ### duration property Signature ```typescript duration: number; ``` ### error property Signature ```typescript error?: string; ``` ### panelId property Signature ```typescript panelId?: number; ``` ### panelName property Signature ```typescript panelName?: string; ```