mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
86 lines
1.8 KiB
Markdown
86 lines
1.8 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "FeatureToggles"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## FeatureToggles interface
|
|
|
|
Describes available feature toggles in Grafana. These can be configured via the `conf/custom.ini` to enable features under development or not yet available in stable version.
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface FeatureToggles
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { FeatureToggles } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [datasourceInsights](#datasourceinsights-property) | <code>boolean</code> | |
|
|
| [expressions](#expressions-property) | <code>boolean</code> | |
|
|
| [meta](#meta-property) | <code>boolean</code> | |
|
|
| [newEdit](#newedit-property) | <code>boolean</code> | |
|
|
| [reportGrid](#reportgrid-property) | <code>boolean</code> | |
|
|
| [transformations](#transformations-property) | <code>boolean</code> | |
|
|
|
|
### datasourceInsights property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
datasourceInsights: boolean;
|
|
```
|
|
|
|
### expressions property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
expressions: boolean;
|
|
```
|
|
|
|
### meta property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
meta: boolean;
|
|
```
|
|
|
|
## Remarks
|
|
|
|
Available only in Grafana Enterprise
|
|
|
|
### newEdit property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
newEdit: boolean;
|
|
```
|
|
|
|
### reportGrid property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
reportGrid: boolean;
|
|
```
|
|
|
|
### transformations property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
transformations: boolean;
|
|
```
|