+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "DataSourcePluginMeta"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## DataSourcePluginMeta interface
Signature
```typescript
export interface DataSourcePluginMeta extends PluginMeta
```
Import
```typescript
import { DataSourcePluginMeta } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [alerting](#alerting-property) | boolean
| |
| [annotations](#annotations-property) | boolean
| |
| [builtIn](#builtin-property) | boolean
| |
| [category](#category-property) | string
| |
| [hasQueryHelp](#hasqueryhelp-property) | boolean
| |
| [logs](#logs-property) | boolean
| |
| [metrics](#metrics-property) | boolean
| |
| [mixed](#mixed-property) | boolean
| |
| [queryOptions](#queryoptions-property) | PluginMetaQueryOptions
| |
| [sort](#sort-property) | number
| |
| [streaming](#streaming-property) | boolean
| |
| [tracing](#tracing-property) | boolean
| |
### alerting property
Signature
```typescript
alerting?: boolean;
```
### annotations property
Signature
```typescript
annotations?: boolean;
```
### builtIn property
Signature
```typescript
builtIn?: boolean;
```
### category property
Signature
```typescript
category?: string;
```
### hasQueryHelp property
Signature
```typescript
hasQueryHelp?: boolean;
```
### logs property
Signature
```typescript
logs?: boolean;
```
### metrics property
Signature
```typescript
metrics?: boolean;
```
### mixed property
Signature
```typescript
mixed?: boolean;
```
### queryOptions property
Signature
```typescript
queryOptions?: PluginMetaQueryOptions;
```
### sort property
Signature
```typescript
sort?: number;
```
### streaming property
Signature
```typescript
streaming?: boolean;
```
### tracing property
Signature
```typescript
tracing?: boolean;
```